Commit 40de4ce 1 parent 070ab3f commit 40de4ce Copy full SHA for 40de4ce
File tree 4 files changed +1
-7
lines changed
4 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
53
53
* (x/collection) [ \# 622] ( https://github.com/line/lbm-sdk/pull/622 ) add Query/TokenClassTypeName
54
54
* (x/bank) [ \# 629] ( https://github.com/line/lbm-sdk/pull/629 ) remove unsafe balance changing methods from bank keeper such as ` SetBalance ` and ` SetSupply ` .
55
55
* (x/wasm) [ \# 649] ( https://github.com/line/lbm-sdk/pull/649 ) fix: wasm module's FIXME in the snapshotter.go file
56
+ * (config) [ \# 665] ( https://github.com/line/lbm-sdk/pull/665 ) remove bech32-cache-size
56
57
57
58
### Improvements
58
59
Original file line number Diff line number Diff line change @@ -79,9 +79,6 @@ type BaseConfig struct {
79
79
// IAVL cache size; bytes size unit
80
80
IAVLCacheSize uint64 `mapstructure:"iavl-cache-size"`
81
81
82
- // Bech32CacheSize is the maximum bytes size of bech32 cache (Default : 1GB)
83
- Bech32CacheSize int `mapstructure:"bech32-cache-size"`
84
-
85
82
// When true, Prometheus metrics are served under /metrics on prometheus_listen_addr in config.toml.
86
83
// It works when tendermint's prometheus option (config.toml) is set to true.
87
84
Prometheus bool `mapstructure:"prometheus"`
Original file line number Diff line number Diff line change @@ -69,9 +69,6 @@ inter-block-cache-size = {{ .BaseConfig.InterBlockCacheSize }}
69
69
# IAVLCacheSize is the maximum bytes size of iavl node cache
70
70
iavl-cache-size = {{ .BaseConfig.IAVLCacheSize }}
71
71
72
- # Bech32CacheSize is the maximum bytes size of bech32 cache (Default : 1GB)
73
- bech32-cache-size = {{ .BaseConfig.Bech32CacheSize }}
74
-
75
72
# IndexEvents defines the set of events in the form {eventType}.{attributeKey},
76
73
# which informs Tendermint what to index. If empty, all events will be indexed.
77
74
#
Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ const (
48
48
FlagInterBlockCache = "inter-block-cache"
49
49
FlagInterBlockCacheSize = "inter-block-cache-size"
50
50
FlagIAVLCacheSize = "iavl-cache-size"
51
- FlagBech32CacheSize = "bech32-cache-size"
52
51
FlagUnsafeSkipUpgrades = "unsafe-skip-upgrades"
53
52
FlagTrace = "trace"
54
53
FlagInvCheckPeriod = "inv-check-period"
You can’t perform that action at this time.
0 commit comments