Skip to content

Commit

Permalink
core/vm/runtime: remove duplicated line (ethereum#21956)
Browse files Browse the repository at this point in the history
This line is duplicated, though it doesn't cause any issues.
  • Loading branch information
ziogaschr authored Dec 4, 2020
1 parent d7a64dc commit 62cedb3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion core/vm/runtime/runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ func Execute(code, input []byte, cfg *Config) ([]byte, *state.StateDB, error) {
cfg.State.AddAddressToAccessList(address)
for _, addr := range vmenv.ActivePrecompiles() {
cfg.State.AddAddressToAccessList(addr)
cfg.State.AddAddressToAccessList(addr)
}
}
cfg.State.CreateAccount(address)
Expand Down

0 comments on commit 62cedb3

Please sign in to comment.