Skip to content

Commit

Permalink
Fix gas-prices & fees parameters in create_validator function
Browse files Browse the repository at this point in the history
  • Loading branch information
YakupAltay committed Feb 29, 2024
1 parent 535cc9e commit c6aabe1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ fn create_validator(
--chain-id=$CHAIN_ID \
--gas=auto \
--gas-adjustment=1.4 \
--gas-prices={fees}$DENOM \
--fees={fees}$DENOM \
--from={wallet_name}' 2>&1"#,
password = my_boxed_session.walletpassword,
),
Expand All @@ -896,7 +896,7 @@ fn create_validator(
--commission-max-rate=0.20 \
--commission-max-change-rate=0.01 \
--gas=auto \
--fees={fees}$DENOM \
--gas-prices={fees}$DENOM \
--min-self-delegation=1 \
--details={details}'",
password = my_boxed_session.walletpassword,
Expand Down

0 comments on commit c6aabe1

Please sign in to comment.