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

Commit

Permalink
fixed ibft tests (#1876)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachit77 authored Sep 6, 2023
1 parent 06153fb commit ee4e408
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/ibft_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func TestIbft_Transfer(t *testing.T) {
txn := &framework.PreparedTransaction{
From: senderAddr,
To: &receiverAddr,
GasPrice: big.NewInt(10000),
GasPrice: big.NewInt(2000000000),
Gas: 1000000,
Value: framework.EthToWei(1),
}
Expand Down Expand Up @@ -141,7 +141,7 @@ func TestIbft_TransactionFeeRecipient(t *testing.T) {
txn := &framework.PreparedTransaction{
From: senderAddr,
To: &receiverAddr,
GasPrice: big.NewInt(10000),
GasPrice: big.NewInt(1000000000),
Gas: 1000000,
Value: tc.txAmount,
}
Expand All @@ -150,7 +150,7 @@ func TestIbft_TransactionFeeRecipient(t *testing.T) {
// Deploy contract
deployTx := &framework.PreparedTransaction{
From: senderAddr,
GasPrice: big.NewInt(0), // don't want gas fee to paid to a proposer
GasPrice: big.NewInt(1000000000), // fees should be greater than base fee
Gas: 1000000,
Value: big.NewInt(0),
Input: framework.MethodSig("setA1"),
Expand Down

0 comments on commit ee4e408

Please sign in to comment.