Skip to content

Commit

Permalink
Default gui-auth param and increased used gas prediction (#1518)
Browse files Browse the repository at this point in the history
* if no `gui_auth` was given, consider it as `false`

Signed-off-by: ozkanonur <work@onurozkan.dev>

* increase simulated gas to predict better values for real tx operations

Signed-off-by: Onur Özkan <work@onurozkan.dev>

Signed-off-by: ozkanonur <work@onurozkan.dev>
Signed-off-by: Onur Özkan <work@onurozkan.dev>
  • Loading branch information
onur-ozkan authored Oct 31, 2022
1 parent 3618e7f commit f552644
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions mm2src/coins/eth/v2_activation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ pub struct EthActivationV2Request {
#[derive(Clone, Deserialize)]
pub struct EthNode {
pub url: String,
#[serde(default)]
pub gui_auth: bool,
}

Expand Down
4 changes: 2 additions & 2 deletions mm2src/coins/tendermint/tendermint_coin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ impl TendermintCoin {
))
})?;

let amount = (gas.gas_used as f64 * self.gas_price()).ceil();
let amount = ((gas.gas_used as f64 * 1.5) * self.gas_price()).ceil();

let fee_amount = Coin {
denom: base_denom,
Expand Down Expand Up @@ -487,7 +487,7 @@ impl TendermintCoin {
))
})?;

Ok((gas.gas_used as f64 * self.gas_price()).ceil() as u64)
Ok(((gas.gas_used as f64 * 1.5) * self.gas_price()).ceil() as u64)
}

pub(super) async fn my_account_info(&self) -> MmResult<BaseAccount, TendermintCoinRpcError> {
Expand Down

0 comments on commit f552644

Please sign in to comment.