Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Santev committed Feb 13, 2024
1 parent c909f91 commit fd56e28
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions state/executor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func TestExecutor_apply_FeeDistribution(t *testing.T) {
}

if txType == types.StateTx {
tx.Gas = 7000000
tx.Gas = 6000000
}

return tx
Expand Down Expand Up @@ -325,7 +325,7 @@ func TestExecutor_apply_SystemAddrBalanceInject(t *testing.T) {
Value: value,
Type: txType,
GasPrice: big.NewInt(0),
Gas: 7000000,
Gas: 6000000,
To: to,
Nonce: nonce,
}
Expand Down Expand Up @@ -398,7 +398,7 @@ func TestExecutor_Apply(t *testing.T) {
Value: value,
Type: txType,
GasPrice: big.NewInt(0),
Gas: 7000000,
Gas: 6000000,
To: toRevert,
Nonce: 0,
Input: input,
Expand All @@ -415,7 +415,7 @@ func TestExecutor_Apply(t *testing.T) {
Value: value,
Type: txType,
GasPrice: big.NewInt(0),
Gas: 7000000,
Gas: 6000000,
To: &to,
Nonce: 1,
},
Expand Down

0 comments on commit fd56e28

Please sign in to comment.