Skip to content

Commit

Permalink
Fix/storage map (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilkumar1612 authored Feb 5, 2025
1 parent 3b94a79 commit 1d8da78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function getNonceStorageMap(

export function getNonceStorageMapForBundle(bundle: Bundle): StorageMap {
if (bundle.entries.length == 0) return bundle.storageMap;
const storageMap = { ...bundle.storageMap }; // cloning
const storageMap = {};
const entryPoint = bundle.entries[0].entryPoint.toLowerCase();
for (const entry of bundle.entries) {
const { userOp } = entry;
Expand Down

0 comments on commit 1d8da78

Please sign in to comment.