Skip to content

Commit

Permalink
revert extraneous changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rpl-ffl committed Sep 25, 2024
1 parent e655a88 commit fc7756d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion substate/world_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (ws WorldState) Merge(y WorldState) {

// overwrite yAcc details in ws by y
ws[yAddr].Nonce = yAcc.Nonce
ws[yAddr].Balance = yAcc.Balance
ws[yAddr].Balance = new(big.Int).Set(yAcc.Balance)
ws[yAddr].Code = make([]byte, len(yAcc.Code))
copy(ws[yAddr].Code, yAcc.Code)
} else {
Expand Down

0 comments on commit fc7756d

Please sign in to comment.