Skip to content

Commit 1423e0f

Browse files
committed
ok
1 parent 2d23f99 commit 1423e0f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contracts/BominatorKeeper.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ contract BominatorKeeper is KeeperCompatibleInterface{
4444

4545
uint8 shouldRunRoute1 = uint8(performData[0]);
4646
uint8 shouldRunRoute2 = uint8(performData[1]);
47-
bytes memory memcopy = performData; //34 = 2 + 2 + 32
47+
bytes memory memcopy = performData;
4848
uint256 amount;
4949
assembly {
50-
amount := mload(add(memcopy,0x22)) //0x22 = 34
50+
amount := mload(add(memcopy,0x22))
5151
}
5252
bool success;
5353
if(shouldRunRoute1 == 1){
File renamed without changes.

hardhat.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ module.exports = {
4242
// // blockNumber: 27799481
4343
// },
4444
// },
45-
polygon: {
45+
mumbai: {
4646
chainId : 80001,
4747
url,
4848
accounts

0 commit comments

Comments
 (0)