Skip to content

Commit

Permalink
fix: temp gas price
Browse files Browse the repository at this point in the history
  • Loading branch information
javiersuweijie committed Dec 29, 2023
1 parent 96172e6 commit 91a00b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/transactions_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ func (p *TransactionsProvider) SubmitAlliancesTransaction(
gasUsed := simRes.GetGasInfo().GetGasUsed()

// calculate fee
fee := sdk.NewIntFromUint64(uint64(float64(gasUsed) * 0.0155 * 1.5))
fee := sdk.NewIntFromUint64(uint64(float64(gasUsed) * 0.155 * 1.5))

// set fee amount from gasused
txBuilder.SetFeeAmount(sdk.NewCoins(sdk.NewCoin(p.denom, fee)))
Expand Down

0 comments on commit 91a00b7

Please sign in to comment.