Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mh0lt committed Nov 30, 2024
1 parent ea9ac89 commit e3a3d82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions turbo/jsonrpc/trace_adhoc.go
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ func (sd *StateDiff) CompareStates(initialIbs, ibs *state.IntraBlockState) error
}
} else if exist {
{
balance, err := initialIbs.GetBalance(addr)
balance, err := ibs.GetBalance(addr)
if err != nil {
return err
}
Expand All @@ -769,7 +769,7 @@ func (sd *StateDiff) CompareStates(initialIbs, ibs *state.IntraBlockState) error
accountDiff.Balance = m
}
{
code, err := initialIbs.GetCode(addr)
code, err := ibs.GetCode(addr)
if err != nil {
return err
}
Expand All @@ -778,7 +778,7 @@ func (sd *StateDiff) CompareStates(initialIbs, ibs *state.IntraBlockState) error
accountDiff.Code = m
}
{
nonce, err := initialIbs.GetNonce(addr)
nonce, err := ibs.GetNonce(addr)
if err != nil {
return err
}
Expand Down

0 comments on commit e3a3d82

Please sign in to comment.