Skip to content

Commit

Permalink
hop-node: higher testnet minGasLimit
Browse files Browse the repository at this point in the history
  • Loading branch information
shanefontaine committed Nov 10, 2023
1 parent beef0aa commit d79be39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/hop-node/src/watchers/classes/ContractBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,11 @@ export default class ContractBase extends EventEmitter {
} else {
if (this.chainSlug === Chain.Gnosis) {
txOptions.gasPrice = 50_000_000_000
txOptions.gasLimit = 5_000_000
txOptions.gasLimit = 10_000_000
} else if (this.chainSlug === Chain.Polygon) {
txOptions.gasLimit = 5_000_000
txOptions.gasLimit = 10_000_000
} else if (this.chainSlug === Chain.Linea) {
txOptions.gasLimit = 5_000_000
txOptions.gasLimit = 10_000_000
}
}

Expand Down

0 comments on commit d79be39

Please sign in to comment.