We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d23f99 commit 1423e0fCopy full SHA for 1423e0f
contracts/BominatorKeeper.sol
@@ -44,10 +44,10 @@ contract BominatorKeeper is KeeperCompatibleInterface{
44
45
uint8 shouldRunRoute1 = uint8(performData[0]);
46
uint8 shouldRunRoute2 = uint8(performData[1]);
47
- bytes memory memcopy = performData; //34 = 2 + 2 + 32
+ bytes memory memcopy = performData;
48
uint256 amount;
49
assembly {
50
- amount := mload(add(memcopy,0x22)) //0x22 = 34
+ amount := mload(add(memcopy,0x22))
51
}
52
bool success;
53
if(shouldRunRoute1 == 1){
docs/Screenshot 2022-08-29 at 04.03.08.png docs/deployy.png
hardhat.config.js
@@ -42,7 +42,7 @@ module.exports = {
42
// // blockNumber: 27799481
43
// },
- polygon: {
+ mumbai: {
chainId : 80001,
url,
accounts
0 commit comments