Skip to content

Commit

Permalink
Use actors v16.0.1 to fix the StateCirculatingSupply RPC method (#4674)
Browse files Browse the repository at this point in the history
  • Loading branch information
lemmih authored Aug 22, 2024
1 parent d0ba0d9 commit 8ceb436
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 44 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@
- [#4635](https://github.com/ChainSafe/forest/pull/4635) Fixed bug in
`StateMinerProvingDeadline`.

- [#4674](https://github.com/ChainSafe/forest/pull/4674) Fixed bug in
`StateCirculatingSupply`.

## Forest 0.19.2 "Eagle"

Non-mandatory release that includes a fix for the Prometheus-incompatible
Expand Down
56 changes: 28 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,18 @@ directories = "5"
displaydoc = "0.2"
ethereum-types = "0.14"
ez-jsonrpc-types = "0.1.0"
fil_actor_account_state = { version = "16.0.0" }
fil_actor_cron_state = { version = "16.0.0" }
fil_actor_datacap_state = { version = "16.0.0" }
fil_actor_init_state = { version = "16.0.0" }
fil_actor_interface = { version = "16.0.0" }
fil_actor_market_state = { version = "16.0.0" }
fil_actor_miner_state = { version = "16.0.0" }
fil_actor_power_state = { version = "16.0.0" }
fil_actor_reward_state = { version = "16.0.0" }
fil_actor_system_state = { version = "16.0.0" }
fil_actor_verifreg_state = { version = "16.0.0" }
fil_actors_shared = { version = "16.0.0", features = ["json"] }
fil_actor_account_state = { version = "16.0.1" }
fil_actor_cron_state = { version = "16.0.1" }
fil_actor_datacap_state = { version = "16.0.1" }
fil_actor_init_state = { version = "16.0.1" }
fil_actor_interface = { version = "16.0.1" }
fil_actor_market_state = { version = "16.0.1" }
fil_actor_miner_state = { version = "16.0.1" }
fil_actor_power_state = { version = "16.0.1" }
fil_actor_reward_state = { version = "16.0.1" }
fil_actor_system_state = { version = "16.0.1" }
fil_actor_verifreg_state = { version = "16.0.1" }
fil_actors_shared = { version = "16.0.1", features = ["json"] }
flume = "0.11"
fs_extra = "1"
futures = "0.3"
Expand Down
2 changes: 0 additions & 2 deletions scripts/tests/api_compare/filter-list
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
!Filecoin.StateReplay
# CustomCheckFailed in Forest: https://github.com/ChainSafe/forest/actions/runs/9593268587/job/26453560366
!Filecoin.StateCall
# CustomCheckFailed in Forest: https://github.com/ChainSafe/forest/issues/4446
!Filecoin.StateCirculatingSupply
# https://github.com/ChainSafe/forest/issues/4661
!Filecoin.EthGetBlockByNumber
!eth_getBlockByNumber
2 changes: 0 additions & 2 deletions scripts/tests/api_compare/filter-list-offline
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
!Filecoin.StateCall
# These methods don't make sense in the context of an offline node
!Filecoin.MinerCreateBlock
# CustomCheckFailed in Forest: https://github.com/ChainSafe/forest/issues/4446
!Filecoin.StateCirculatingSupply
# The estimation is inaccurate only for offline RPC server, to be investigated: https://github.com/ChainSafe/forest/issues/4555
!Filecoin.EthEstimateGas
!eth_estimateGas
Expand Down

0 comments on commit 8ceb436

Please sign in to comment.