Skip to content

Commit

Permalink
Merge pull request #200 from cheqd/docker-image-fixes
Browse files Browse the repository at this point in the history
Fix testnet docker image
  • Loading branch information
askolesov authored Nov 11, 2021
2 parents 43ebbeb + b6b874c commit 7e0b7f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/single_image_testnet/gen_node_configs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ sed -i $sed_extension 's/minimum-gas-prices = ""/minimum-gas-prices = "25ncheq"/

echo "##### [Validator operator] Generating key"

cheqd-noded keys add alice
cheqd-noded keys add alice --keyring-backend test

echo "##### [Validator operator] Initializing genesis"

Expand All @@ -38,7 +38,7 @@ sed -i $sed_extension 's/"stake"/"ncheq"/' $GENESIS

echo "##### [Validator operator] Creating genesis account"

cheqd-noded add-genesis-account alice 20000000000000000ncheq
cheqd-noded add-genesis-account alice 20000000000000000ncheq --keyring-backend test

echo "##### Adding test accounts to the genesis"

Expand Down Expand Up @@ -75,7 +75,7 @@ cat <<< "$(jq '.app_state.auth.accounts += [{"@type": "/cosmos.vesting.v1beta1.P

echo "##### [Validator operator] Creating genesis validator"

cheqd-noded gentx alice 1000000000000000ncheq --chain-id $CHAIN_ID --node-id "$NODE_0_ID" --pubkey "$NODE_0_VAL_PUBKEY"
cheqd-noded gentx alice 1000000000000000ncheq --chain-id $CHAIN_ID --node-id "$NODE_0_ID" --pubkey "$NODE_0_VAL_PUBKEY" --keyring-backend test

echo "##### [Validator operator] Collect gentxs"

Expand Down

0 comments on commit 7e0b7f4

Please sign in to comment.