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

fixed ibft tests #1876

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading