Skip to content

Commit

Permalink
Increase gas modifier (for all for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
tombeynon committed Mar 3, 2022
1 parent 6df2b77 commit e46950e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/SigningClient.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const SigningClient = async (rpcUrl, chainId, defaultGasPrice, signer, key) => {

const simulate = async (address, msgs, memo, modifier) => {
const estimate = await client.simulate(address, msgs, memo)
return parseInt(estimate * (modifier || 1.1))
return parseInt(estimate * (modifier || 1.3))
}

function findAvailableUrl(urls){
Expand Down

0 comments on commit e46950e

Please sign in to comment.