| 123456789101112131415161718192021222324252627282930313233343536 |
- # This is a TOML config file.
- # For more information, see https://github.com/toml-lang/toml
- ##### main base config options #####
- # The minimum gas prices a validator is willing to accept for processing a
- # transaction. A transaction's fees must meet the minimum of any denomination
- # specified in this config (e.g. 0.25token1;0.0001token2).
- minimum-gas-prices = "0.00506uluna,0.0015uusd,0.00102usdr,1.7805ukrw,4.31626umnt"
- # default: the last 100 states are kept in addition to every 500th state; pruning at 10 block intervals
- # nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node)
- # everything: all saved states will be deleted, storing only the current state; pruning at 10 block intervals
- # custom: allow pruning options to be manually specified through 'pruning-keep-recent', 'pruning-keep-every', and 'pruning-interval'
- pruning = "default"
- # These are applied if and only if the pruning strategy is custom.
- pruning-keep-recent = "0"
- pruning-keep-every = "0"
- pruning-interval = "0"
- # HaltHeight contains a non-zero block height at which a node will gracefully
- # halt and shutdown that can be used to assist upgrades and testing.
- #
- # Note: Commitment of state will be attempted on the corresponding block.
- halt-height = 0
- # HaltTime contains a non-zero minimum block time (in Unix seconds) at which
- # a node will gracefully halt and shutdown that can be used to assist upgrades
- # and testing.
- #
- # Note: Commitment of state will be attempted on the corresponding block.
- halt-time = 0
- # InterBlockCache enables inter-block caching.
- inter-block-cache = true
|