Skip to content

Commit

Permalink
chore(ccr): use default gas params
Browse files Browse the repository at this point in the history
Ticket: COIN-1108
  • Loading branch information
kamleshmugdiya committed Sep 20, 2024
1 parent 5bcd1a7 commit 830418e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ async function main() {
forwarderFactory: ''
};

const feeData = await ethers.provider.getFeeData();
// const feeData = await ethers.provider.getFeeData();

const eip1559GasParams = {
maxFeePerGas: feeData.maxFeePerGas,
maxPriorityFeePerGas: feeData.maxPriorityFeePerGas
maxFeePerGas: 10000000000,
maxPriorityFeePerGas: 10000000000,
gasLimit: 3000000
};

const [deployer] = await ethers.getSigners();
Expand Down

0 comments on commit 830418e

Please sign in to comment.