Skip to content

Commit e84324c

Browse files
authored
Merge pull request #928 from DeVikingMark/popa-jabi
fix: typos in function name and comments
2 parents acaebf8 + 3f3e5a5 commit e84324c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

contrib/devtools/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $(STATIK):
6464
@(cd /tmp && go get github.com/rakyll/statik@v0.1.6)
6565

6666
# Install the runsim binary with a temporary workaround of entering an outside
67-
# directory as the "go get" command ignores the -mod option and will polute the
67+
# directory as the "go get" command ignores the -mod option and will pollute the
6868
# go.{mod, sum} files.
6969
#
7070
# ref: https://github.com/golang/go/issues/30515

network/init-neutrond.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ THIRD_PARTY_CONTRACTS_DIR=${THIRD_PARTY_CONTRACTS_DIR:-./contracts_thirdparty}
1010
FEEMARKET_ENABLED=${FEEMARKET_ENABLED:-true}
1111

1212
# IMPORTANT! minimum_gas_prices should always contain at least one record, otherwise the chain will not start or halt
13-
# ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2 denom is required by intgration tests (test:tokenomics)
13+
# ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2 denom is required by integration tests (test:tokenomics)
1414
MIN_GAS_PRICES_DEFAULT='[{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","amount":"0"},{"denom":"untrn","amount":"0"}]'
1515
MIN_GAS_PRICES=${MIN_GAS_PRICES:-"$MIN_GAS_PRICES_DEFAULT"}
1616

@@ -236,7 +236,7 @@ NEUTRON_VAULT_CONTRACT_ADDRESS=$(genaddr "$NEUTRON_VAULT_CONTRACT
236236
NEUTRON_INVESTORS_VAULT_CONTRACT_ADDRESS=$(genaddr "$NEUTRON_INVESTORS_VAULT_CONTRACT_BINARY_ID") && (( INSTANCE_ID_COUNTER++ ))
237237

238238
# VESTING
239-
NEUTRON_VESTING_INVESTORS_CONTRACT_ADDRRES=$(genaddr "$NEUTRON_VESTING_INVESTORS_BINARY_ID") && (( INSTANCE_ID_COUNTER++ ))
239+
NEUTRON_VESTING_INVESTORS_CONTRACT_ADDRESS=$(genaddr "$NEUTRON_VESTING_INVESTORS_BINARY_ID") && (( INSTANCE_ID_COUNTER++ ))
240240

241241
# MAIN_DAO
242242
DAO_CONTRACT_ADDRESS=$(genaddr "$DAO_CONTRACT_BINARY_ID") && (( INSTANCE_ID_COUNTER++ ))
@@ -479,7 +479,7 @@ NEUTRON_VAULT_INIT='{
479479
}'
480480

481481
NEUTRON_INVESTORS_VAULT_INIT='{
482-
"vesting_contract_address": "'"$NEUTRON_VESTING_INVESTORS_CONTRACT_ADDRRES"'",
482+
"vesting_contract_address": "'"$NEUTRON_VESTING_INVESTORS_CONTRACT_ADDRESS"'",
483483
"owner": "'"$DAO_CONTRACT_ADDRESS"'",
484484
"description": "'"$NEUTRON_INVESTORS_VAULT_DESCRIPTION"'",
485485
"name": "'"$NEUTRON_INVESTORS_VAULT_NAME"'"
@@ -772,10 +772,10 @@ REGISTER_VESTING_ACCOUNTS_MSG='{
772772
$BINARY add-wasm-message execute "$DAO_CONTRACT_ADDRESS" "$ADD_SUBDAOS_MSG" \
773773
--run-as "$DAO_CONTRACT_ADDRESS" --home "$CHAIN_DIR"
774774

775-
$BINARY add-wasm-message execute "$NEUTRON_VESTING_INVESTORS_CONTRACT_ADDRRES" "$SET_VESTING_TOKEN_MSG" \
775+
$BINARY add-wasm-message execute "$NEUTRON_VESTING_INVESTORS_CONTRACT_ADDRESS" "$SET_VESTING_TOKEN_MSG" \
776776
--run-as "$ADMIN_ADDRESS" --home "$CHAIN_DIR"
777777

778-
$BINARY add-wasm-message execute "$NEUTRON_VESTING_INVESTORS_CONTRACT_ADDRRES" "$REGISTER_VESTING_ACCOUNTS_MSG" \
778+
$BINARY add-wasm-message execute "$NEUTRON_VESTING_INVESTORS_CONTRACT_ADDRESS" "$REGISTER_VESTING_ACCOUNTS_MSG" \
779779
--amount 1000untrn --run-as "$ADMIN_ADDRESS" --home "$CHAIN_DIR"
780780

781781
function set_genesis_param() {

0 commit comments

Comments
 (0)