Skip to content

Commit

Permalink
Feat/core rc.4 (#7)
Browse files Browse the repository at this point in the history
* * BREAKING CHANGE: Update core version to v0.4.0-rc.3. Data must be reset after upgrade (docker-compose down)

* feat(pseudo-feeder): Update terra.js version to 0.4.13

* Updated core to v0.4.0-rc.4
Updated genesis
Updated gas prices

* Update fcd to 0.4.12

* Update pseudo-feeder
  • Loading branch information
hanjukim authored Sep 10, 2020
1 parent e54c3ac commit cbe19ec
Show file tree
Hide file tree
Showing 10 changed files with 346 additions and 274 deletions.
19 changes: 12 additions & 7 deletions config/app.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,18 @@
# 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.015ukrw,0.015uluna,0.015usdr,0.015uusd"
minimum-gas-prices = "0.15uluna,0.15uusd,0.1018usdr,178.05ukrw,431.6259umnt"

# 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.
Expand All @@ -23,9 +34,3 @@ halt-time = 0

# InterBlockCache enables inter-block caching.
inter-block-cache = true

# Pruning sets the pruning strategy: syncable, nothing, everything
# syncable: only those states not needed for state syncing will be deleted (keeps last 100 + every 10000th)
# 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 = "default"
Loading

0 comments on commit cbe19ec

Please sign in to comment.