From fbebb37d2d3b3b12e54e1f06e7b44f662ac793d8 Mon Sep 17 00:00:00 2001 From: filip mertens Date: Tue, 9 Jan 2024 10:12:55 +0100 Subject: [PATCH] lint --- libs/remix-simulator/src/vm-context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-simulator/src/vm-context.ts b/libs/remix-simulator/src/vm-context.ts index c9913062af..e8c51e3dc2 100644 --- a/libs/remix-simulator/src/vm-context.ts +++ b/libs/remix-simulator/src/vm-context.ts @@ -245,7 +245,7 @@ class CustomEthersStateManager extends StateManagerCommonStorageDump { } else { const codeHash = accountData.codeHash === '0x0000000000000000000000000000000000000000000000000000000000000000' ? '0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470' : accountData.codeHash account = Account.fromAccountData({ - balance: BigInt(accountData.balance), + balance: BigInt(accountData.balance), nonce: BigInt(accountData.nonce), codeHash: toBuffer(codeHash) // storageRoot: toBuffer([]), // we have to remove this in order to force the creation of the Trie in the local state.