Skip to content

Commit 47a3b4e

Browse files
committed
update changelog and small fix
1 parent e2e7b5e commit 47a3b4e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
### Changed
3737

3838
- [#5467](https://github.com/ChainSafe/forest/pull/5467) Improve error message for `Filecoin.EthEstimateGas` and `Filecoin.EthCall`.
39+
- [#5587](https://github.com/ChainSafe/forest/pull/5587) Retrieve state root from child tipset rather than recomputing when possible
3940

4041
### Removed
4142

src/state_manager/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1778,7 +1778,7 @@ where
17781778
heaviest,
17791779
ResolveNullTipset::TakeNewer,
17801780
) {
1781-
// verify the parent state of the next tipset is the same as the current tipset
1781+
// verify that the parent of the `next_tipset` is the same as the current tipset
17821782
if !next_tipset.parents().eq(tipset.key()) {
17831783
return None;
17841784
}

0 commit comments

Comments
 (0)