diff --git a/nimbus/db/state_db.nim b/nimbus/db/state_db.nim index 78bfeea9c..ab0fa5640 100644 --- a/nimbus/db/state_db.nim +++ b/nimbus/db/state_db.nim @@ -80,7 +80,7 @@ template createTrieKeyFromSlot(slot: UInt256): ByteRange = # morally equivalent to toByteRange_Unnecessary but with different types template getAccountTrie(stateDb: AccountStateDB, account: Account): auto = - initSecureHexaryTrie(HexaryTrie(stateDb.trie).db, account.storageRoot) + initSecureHexaryTrie(HexaryTrie(stateDb.trie).db, account.storageRoot, false) # XXX: https://github.com/status-im/nimbus/issues/142#issuecomment-420583181 proc setStorageRoot*(db: var AccountStateDB, address: EthAddress, storageRoot: Hash256) =