Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -37,6 +37,8 @@

### Fixed

- [#6707](https://github.com/ChainSafe/forest/issues/6707): Added missing `GoldenWeek` network upgrade entry in `Filecoin.StateGetNetworkParams` RPC method.

## Forest v0.32.4 "Mild Inconvenience"

This is a non-mandatory release for all node operators. It enables F3 finality resolution on ETH v1 RPC methods.
Expand Down
4 changes: 2 additions & 2 deletions src/rpc/methods/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3142,7 +3142,7 @@ pub struct ForkUpgradeParams {
upgrade_tuktuk_height: ChainEpoch,
upgrade_teep_height: ChainEpoch,
upgrade_tock_height: ChainEpoch,
//upgrade_golden_week_height: ChainEpoch,
upgrade_golden_week_height: ChainEpoch,
//upgrade_xxx_height: ChainEpoch,
}

Expand Down Expand Up @@ -3191,7 +3191,7 @@ impl TryFrom<&ChainConfig> for ForkUpgradeParams {
upgrade_tuktuk_height: get_height(TukTuk)?,
upgrade_teep_height: get_height(Teep)?,
upgrade_tock_height: get_height(Tock)?,
//upgrade_golden_week_height: get_height(GoldenWeek)?,
upgrade_golden_week_height: get_height(GoldenWeek)?,
//upgrade_xxx_height: get_height(Xxx)?,
})
}
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 @@ -282,7 +282,7 @@ filecoin_stategetbeaconentry_1737546933208724.rpcsnap.json.zst
filecoin_stategetclaim_1737546933208940.rpcsnap.json.zst
filecoin_stategetclaims_1737546933208977.rpcsnap.json.zst
filecoin_stategetid_1764943126105310.rpcsnap.json.zst
filecoin_stategetnetworkparams_1756890287572001.rpcsnap.json.zst
filecoin_stategetnetworkparams_1774522153615694.rpcsnap.json.zst
Comment thread
LesnyRumcajs marked this conversation as resolved.
filecoin_stategetrandomnessdigestfrombeacon_1737546933236534.rpcsnap.json.zst
filecoin_stategetrandomnessdigestfromtickets_1737546933236558.rpcsnap.json.zst
filecoin_stategetrandomnessfrombeacon_1737546933236581.rpcsnap.json.zst
Expand Down
Loading