Skip to content

Commit

Permalink
fix create execution
Browse files Browse the repository at this point in the history
  • Loading branch information
stan7123 committed Nov 5, 2024
1 parent db8c0db commit abbaeb0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/evm/src/interpreter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1115,6 +1115,9 @@ export class Interpreter {
if (this.common.isActivatedEIP(6780)) {
// copy over the items to result via iterator
for (const item of createdAddresses!) {
if (!this._result.createdAddresses) {
this._result.createdAddresses = new Set()
}
this._result.createdAddresses!.add(item)
}
}
Expand Down

0 comments on commit abbaeb0

Please sign in to comment.