Skip to content

Commit

Permalink
done
Browse files Browse the repository at this point in the history
  • Loading branch information
GNaD13 committed Jul 17, 2024
1 parent f8b3cd6 commit 4af70fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions local_node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ if [[ $overwrite == "y" || $overwrite == "Y" ]]; then
realio-networkd init $MONIKER -o --chain-id $CHAINID --home "$HOMEDIR"

# Change parameter token denominations to ario
jq '.app_state["multistaking"]["multi_staking_coin_info"]=[{"denom": "ario", "bond_weight": "1.000000000000000000"}, {"denom": "arst", "bond_weight": "1.000000000000000000"}]' "$GENESIS" >"$TMP_GENESIS" && mv "$TMP_GENESIS" "$GENESIS"
jq '.app_state["mint"]["params"]["mint_denom"]="ario"' "$GENESIS" >"$TMP_GENESIS" && mv "$TMP_GENESIS" "$GENESIS"
jq '.app_state["crisis"]["constant_fee"]["denom"]="ario"' "$GENESIS" >"$TMP_GENESIS" && mv "$TMP_GENESIS" "$GENESIS"
jq '.app_state["gov"]["deposit_params"]["min_deposit"][0]["denom"]="ario"' "$GENESIS" >"$TMP_GENESIS" && mv "$TMP_GENESIS" "$GENESIS"
Expand Down
6 changes: 3 additions & 3 deletions scripts/start-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ echo "prepare genesis: Run validate-genesis to ensure everything worked and that
./realio-networkd validate-genesis --home $DATA_DIR

echo "starting RealioNetwork node $i in background ..."
#./realio-networkd start --pruning=nothing --rpc.unsafe \
#--keyring-backend test --home $DATA_DIR \
#>$DATA_DIR/node.log 2>&1 & disown
./realio-networkd start --pruning=nothing --rpc.unsafe \
--keyring-backend test --home $DATA_DIR \
>$DATA_DIR/node.log 2>&1 & disown

echo "started RealioNetwork node"
tail -f /dev/null

0 comments on commit 4af70fc

Please sign in to comment.