Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit ae9bcf3

Browse files
committed
this order makes more sense
1 parent f1d9311 commit ae9bcf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/chains/ethereum/ethereum/src/blockchain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1534,12 +1534,12 @@ export default class Blockchain extends Emittery<BlockchainTypedEvents> {
15341534
// there are no transactions to run, so let's just grab what we need
15351535
// from the last block's trie
15361536
const [, , stateRoot] = decode<EthereumRawAccount>(rawAccount);
1537-
storageTrie = trie;
15381537
trie.setContext(
15391538
stateRoot,
15401539
contractAddressBuffer,
15411540
parentBlock.header.number
15421541
);
1542+
storageTrie = trie;
15431543
} else {
15441544
// prepare block to be run in traceTransaction
15451545
const newBlock = this.#prepareNextBlock(

0 commit comments

Comments
 (0)