-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathoptions.go
More file actions
92 lines (80 loc) · 3.12 KB
/
options.go
File metadata and controls
92 lines (80 loc) · 3.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// SPDX-License-Identifier: BUSL-1.1
//
// Copyright (C) 2025, Berachain Foundation. All rights reserved.
// Use of this software is governed by the Business Source License included
// in the LICENSE file of this repository and at www.mariadb.com/bsl11.
//
// ANY USE OF THE LICENSED WORK IN VIOLATION OF THIS LICENSE WILL AUTOMATICALLY
// TERMINATE YOUR RIGHTS UNDER THIS LICENSE FOR THE CURRENT AND ALL OTHER
// VERSIONS OF THE LICENSED WORK.
//
// THIS LICENSE DOES NOT GRANT YOU ANY RIGHT IN ANY TRADEMARK OR LOGO OF
// LICENSOR OR ITS AFFILIATES (PROVIDED THAT YOU MAY USE A TRADEMARK OR LOGO OF
// LICENSOR AS EXPRESSLY REQUIRED BY THIS LICENSE).
//
// TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
// AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
// EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
// TITLE.
package cometbft
import (
"fmt"
pruningtypes "cosmossdk.io/store/pruning/types"
storetypes "cosmossdk.io/store/types"
)
// File for storing in-package cometbft optional functions,
// for options that need access to non-exported fields of the Service
// SetPruning sets a pruning option on the multistore associated with the s.
func SetPruning(opts pruningtypes.PruningOptions) func(*Service) {
return func(bs *Service) {
if opts.Strategy == pruningtypes.PruningNothing {
bs.logger.Warn(
"enable state pruning to reduce memory footprint considerably",
"strategy", pruningtypes.PruningOptionNothing,
"recommended strategies", fmt.Sprintf("%s or %s",
pruningtypes.PruningOptionEverything,
pruningtypes.PruningOptionDefault,
),
)
}
bs.sm.GetCommitMultiStore().SetPruning(opts)
}
}
// SetMinRetainBlocks returns a Service option function that sets the minimum
// block retention height value when determining which heights to prune during
// ABCI Commit.
func SetMinRetainBlocks(minRetainBlocks uint64) func(*Service) {
return func(bs *Service) { bs.setMinRetainBlocks(minRetainBlocks) }
}
// SetIAVLCacheSize provides a Service option function that sets the size of
// IAVL cache.
func SetIAVLCacheSize(size int) func(*Service) {
return func(bs *Service) {
bs.sm.GetCommitMultiStore().SetIAVLCacheSize(size)
}
}
// SetIAVLDisableFastNode enables(false)/disables(true) fast node usage from the
// IAVL store.
func SetIAVLDisableFastNode(disable bool) func(*Service) {
return func(bs *Service) {
bs.sm.GetCommitMultiStore().SetIAVLDisableFastNode(disable)
}
}
// SetInterBlockCache provides a Service option function that sets the
// inter-block cache.
func SetInterBlockCache(cache storetypes.MultiStorePersistentCache) func(*Service) {
return func(s *Service) {
s.setInterBlockCache(cache)
}
}
// SetPrivValidatorConsumer configures the Service to share its PrivValidator.
func SetPrivValidatorConsumer(consumer PrivValidatorConsumer) func(*Service) {
return func(s *Service) {
s.privValConsumer = consumer
}
}
// SetChainID sets the chain ID in cometbft.
func SetChainID(chainID string) func(*Service) {
return func(s *Service) { s.chainID = chainID }
}