Skip to content

Commit

Permalink
feat: fee gwei
Browse files Browse the repository at this point in the history
  • Loading branch information
ashitakah committed Apr 12, 2024
1 parent 090e670 commit 97c5039
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions solidity/test/integration/Keep3rRelay.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ contract IntegrationKeep3rRelay is CommonIntegrationTest {

function test_executeAndGetPaymentFromKeep3r(uint64 _fee, uint8 _howHard) public {
vm.assume(_howHard > 20);
vm.assume(_fee > 1 && _fee < 400);
vm.assume(_fee > 30 gwei && _fee < 200 gwei);
vm.fee(_fee);

// Bond and activate keep3r
Expand Down Expand Up @@ -167,7 +167,7 @@ contract IntegrationKeep3rRelay is CommonIntegrationTest {

function test_executeBondAndGetPaymentFromKeep3r(uint64 _fee, uint8 _howHard) public {
vm.assume(_howHard > 20);
vm.assume(_fee > 1 && _fee < 400);
vm.assume(_fee > 30 gwei && _fee < 200 gwei);
vm.fee(_fee);

// Bond and activate keep3r
Expand Down
4 changes: 2 additions & 2 deletions solidity/test/integration/Keep3rSponsor.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ contract IntegrationKeep3rSponsor is CommonIntegrationTest {

function test_executeAndGetPaymentFromKeep3r(uint64 _fee, uint8 _howHard) public {
vm.assume(_howHard > 20);
vm.assume(_fee > 1 && _fee < 400);
vm.assume(_fee > 30 gwei && _fee < 200 gwei);
vm.fee(_fee);

// Bond and activate keep3r
Expand Down Expand Up @@ -141,7 +141,7 @@ contract IntegrationKeep3rSponsor is CommonIntegrationTest {

function test_executeAndGetPaymentFromOpenRelayToGovernance(uint64 _fee, uint8 _howHard) public {
vm.assume(_howHard > 20);
vm.assume(_fee > 1 && _fee < 400);
vm.assume(_fee > 30 gwei && _fee < 200 gwei);
vm.fee(_fee);

// Bond and activate keep3r
Expand Down

0 comments on commit 97c5039

Please sign in to comment.