Skip to content

Commit

Permalink
chore(core): increase the default gas adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
aelesbao committed Nov 6, 2023
1 parent 67aa7af commit 3b2bc37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/arch3-core/src/signingarchwayclient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ export interface SigningArchwayClientOptions extends SigningCosmWasmClientOption
* Default adjustment factor to be multiplied against the estimate returned by the tx simulation.
* If the gas limit is set manually in the transaction, this option is ignored.
*
* @default 1.3
* @default 1.5
*/
readonly gasAdjustment?: number;
}

const defaultGasAdjustment = 1.3;
const defaultGasAdjustment = 1.5;

interface DeliverTxResponseWithLogs extends DeliverTxResponse {
readonly parsedLogs: readonly logs.Log[];
Expand Down

0 comments on commit 3b2bc37

Please sign in to comment.