Make min-gas-price configurable
All checks were successful
Integration Tests / test-integration (pull_request) Successful in 2m42s
Build / build (pull_request) Successful in 2m57s
E2E Tests / test-e2e (pull_request) Successful in 4m26s
Unit Tests / test-unit (pull_request) Successful in 2m36s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 8m31s
SDK Tests / sdk_tests_authority_auctions (pull_request) Successful in 16m2s
SDK Tests / sdk_tests (pull_request) Successful in 19m54s
All checks were successful
Integration Tests / test-integration (pull_request) Successful in 2m42s
Build / build (pull_request) Successful in 2m57s
E2E Tests / test-e2e (pull_request) Successful in 4m26s
Unit Tests / test-unit (pull_request) Successful in 2m36s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 8m31s
SDK Tests / sdk_tests_authority_auctions (pull_request) Successful in 16m2s
SDK Tests / sdk_tests (pull_request) Successful in 19m54s
This commit is contained in:
parent
5a52243e52
commit
42d6b150ed
@ -6,6 +6,7 @@ MONIKER=${MONIKER:-"localtestnet"}
|
|||||||
KEYRING=${KEYRING:-"test"}
|
KEYRING=${KEYRING:-"test"}
|
||||||
DENOM=${DENOM:-"alnt"}
|
DENOM=${DENOM:-"alnt"}
|
||||||
STAKING_AMOUNT=${STAKING_AMOUNT:-"1000000000000000"}
|
STAKING_AMOUNT=${STAKING_AMOUNT:-"1000000000000000"}
|
||||||
|
MIN_GAS_PRICE=${MIN_GAS_PRICE:-"0.001"}
|
||||||
LOGLEVEL=${LOGLEVEL:-"info"}
|
LOGLEVEL=${LOGLEVEL:-"info"}
|
||||||
|
|
||||||
input_genesis_file=${GENESIS_FILE}
|
input_genesis_file=${GENESIS_FILE}
|
||||||
@ -135,7 +136,7 @@ fi
|
|||||||
laconicd start \
|
laconicd start \
|
||||||
--pruning=nothing \
|
--pruning=nothing \
|
||||||
--log_level $LOGLEVEL \
|
--log_level $LOGLEVEL \
|
||||||
--minimum-gas-prices=0.001$DENOM \
|
--minimum-gas-prices=$MIN_GAS_PRICE$DENOM \
|
||||||
--api.enable \
|
--api.enable \
|
||||||
--rpc.laddr="tcp://0.0.0.0:26657" \
|
--rpc.laddr="tcp://0.0.0.0:26657" \
|
||||||
--gql-server --gql-playground
|
--gql-server --gql-playground
|
||||||
|
Loading…
Reference in New Issue
Block a user