Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use actors v16.0.1 to fix the StateCirculatingSupply RPC method #4674

Merged
merged 2 commits into from
Aug 22, 2024
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
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
Loading