Skip to content

Commit

Permalink
core/vm/runtime: remove duplicated line
Browse files Browse the repository at this point in the history
This line is duplicated, though it doesn't cause any issues. 
You can check the actual discussion with @holiman [here](ethereum#21509 (comment)).
  • Loading branch information
ziogaschr authored Dec 3, 2020
1 parent 0c34eae commit e55ea87
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 e55ea87

Please sign in to comment.