Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@

### Fixed

- [#6028](https://github.com/ChainSafe/forest/pull/6028) Fixed missing `Teep` and `Tock` network upgrade entries in `Filecoin.StateGetNetworkParams` RPC method.

## Forest v0.29.0 "Fëanor"

Non-mandatory release. It introduces a couple of features around snapshot generation and inspection. It fully supports the new FRC-0108 Filecoin snapshot format. There is also a notable fix in `Filecoin.ChainNotify` RPC method that would cause issues with some clients.
Expand Down
6 changes: 4 additions & 2 deletions src/rpc/methods/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2957,7 +2957,8 @@ pub struct ForkUpgradeParams {
upgrade_phoenix_height: ChainEpoch,
upgrade_waffle_height: ChainEpoch,
upgrade_tuktuk_height: ChainEpoch,
//upgrade_teep_height: ChainEpoch,
upgrade_teep_height: ChainEpoch,
upgrade_tock_height: ChainEpoch,
}

impl TryFrom<&ChainConfig> for ForkUpgradeParams {
Expand Down Expand Up @@ -3003,7 +3004,8 @@ impl TryFrom<&ChainConfig> for ForkUpgradeParams {
upgrade_phoenix_height: get_height(Phoenix)?,
upgrade_waffle_height: get_height(Waffle)?,
upgrade_tuktuk_height: get_height(TukTuk)?,
//upgrade_teep_height: get_height(Teep)?,
upgrade_teep_height: get_height(Teep)?,
upgrade_tock_height: get_height(Tock)?,
})
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/tool/subcommands/api_cmd/test_snapshots.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ filecoin_stategetallocations_1733735082163772.rpcsnap.json.zst
filecoin_stategetbeaconentry_1737546933208724.rpcsnap.json.zst
filecoin_stategetclaim_1737546933208940.rpcsnap.json.zst
filecoin_stategetclaims_1737546933208977.rpcsnap.json.zst
filecoin_stategetnetworkparams_1751358640849770.rpcsnap.json.zst
filecoin_stategetnetworkparams_1756890287572001.rpcsnap.json.zst
filecoin_stategetrandomnessdigestfrombeacon_1737546933236534.rpcsnap.json.zst
filecoin_stategetrandomnessdigestfromtickets_1737546933236558.rpcsnap.json.zst
filecoin_stategetrandomnessfrombeacon_1737546933236581.rpcsnap.json.zst
Expand Down
Loading