Skip to content

Commit

Permalink
use broadcast mode sync vs block in cli scripts (#1823)
Browse files Browse the repository at this point in the history
  • Loading branch information
galxy25 committed Feb 8, 2024
1 parent 45aa631 commit c0df293
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/examples/force-update-module-params.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ kava config chain-id "${CHAIN_ID}"
kava config keyring-backend test

# wait for transactions to be committed per CLI command
kava config broadcast-mode block
kava config broadcast-mode sync

# setup god's wallet
echo "${KAVA_TESTNET_GOD_MNEMONIC}" | kava keys add --recover god
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/seed-internal-testnet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ kava config chain-id "${CHAIN_ID}"
kava config keyring-backend test

# wait for transactions to be committed per CLI command
kava config broadcast-mode block
kava config broadcast-mode sync

# setup dev wallet
echo "${DEV_WALLET_MNEMONIC}" | kava keys add --recover dev-wallet
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/seed-protonet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ kava config chain-id "${CHAIN_ID}"
kava config keyring-backend test

# wait for transactions to be committed per CLI command
kava config broadcast-mode block
kava config broadcast-mode sync

# setup dev wallet
echo "${DEV_WALLET_MNEMONIC}" | kava keys add --recover dev-wallet
Expand Down
2 changes: 1 addition & 1 deletion contrib/devnet/init-new-chain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@ jq '.app_state.earn.params.allowed_vaults = [
jq '.app_state.savings.params.supported_denoms = ["bkava-kavavaloper1ffv7nhd3z6sych2qpqkk03ec6hzkmufyz4scd0"]' $DATA/config/genesis.json | sponge $DATA/config/genesis.json


$BINARY config broadcast-mode block
$BINARY config broadcast-mode sync

0 comments on commit c0df293

Please sign in to comment.