Skip to content

Commit 10a7605

Browse files
committed
chore: merge
2 parents 5ae4e36 + c372395 commit 10a7605

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

api/cosmos/feegrant/v1beta1/query_grpc.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/docs/swagger-ui/swagger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29488,7 +29488,7 @@ paths:
2948829488
- Query
2948929489
/cosmos/feegrant/v1beta1/allowance/{granter}/{grantee}:
2949029490
get:
29491-
summary: Allowance returns granted allwance to the grantee by the granter.
29491+
summary: Allowance returns granted allowance to the grantee by the granter.
2949229492
operationId: Allowance
2949329493
responses:
2949429494
'200':

server/config/toml.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ stop-node-on-err = {{ .Streaming.ABCI.StopNodeOnErr }}
240240
241241
[mempool]
242242
# Setting max-txs to 0 will allow for a unbounded amount of transactions in the mempool.
243-
# Setting max_txs to negative 1 (-1) will disable transactions from being inserted into the mempool.
243+
# Setting max_txs to negative 1 (-1) will disable transactions from being inserted into the mempool (no-op mempool).
244244
# Setting max_txs to a positive number (> 0) will limit the number of transactions in the mempool, by the specified amount.
245245
#
246246
# Note, this configuration only applies to SDK built-in app-side mempool

store/snapshots/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const (
7373
snapshotMaxItemSize = int(64e6) // SDK has no key/value size limit, so we set an arbitrary limit
7474
)
7575

76-
var ErrOptsZeroSnapshotInterval = errors.New("snaphot-interval must not be 0")
76+
var ErrOptsZeroSnapshotInterval = errors.New("snapshot-interval must not be 0")
7777

7878
// NewManager creates a new manager.
7979
func NewManager(store *Store, opts SnapshotOptions, commitSnapshotter CommitSnapshotter, storageSnapshotter StorageSnapshotter, extensions map[string]ExtensionSnapshotter, logger log.Logger) *Manager {

tools/confix/data/v0.50-app.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ stop-node-on-err = true
227227

228228
[mempool]
229229
# Setting max-txs to 0 will allow for a unbounded amount of transactions in the mempool.
230-
# Setting max_txs to negative 1 (-1) will disable transactions from being inserted into the mempool.
230+
# Setting max_txs to negative 1 (-1) will disable transactions from being inserted into the mempool (no-op mempool).
231231
# Setting max_txs to a positive number (> 0) will limit the number of transactions in the mempool, by the specified amount.
232232
#
233233
# Note, this configuration only applies to SDK built-in app-side mempool
234234
# implementations.
235-
max-txs = 5000
235+
max-txs = -1

tools/confix/data/v0.51-app.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ stop-node-on-err = true
233233
#
234234
# Note, this configuration only applies to SDK built-in app-side mempool
235235
# implementations.
236-
max-txs = 5000
236+
max-txs = -1
237237

238238
[custom]
239239

x/feegrant/proto/cosmos/feegrant/v1beta1/query.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ option go_package = "cosmossdk.io/x/feegrant";
1212
// Query defines the gRPC querier service.
1313
service Query {
1414

15-
// Allowance returns granted allwance to the grantee by the granter.
15+
// Allowance returns granted allowance to the grantee by the granter.
1616
rpc Allowance(QueryAllowanceRequest) returns (QueryAllowanceResponse) {
1717
option (google.api.http).get = "/cosmos/feegrant/v1beta1/allowance/{granter}/{grantee}";
1818
}

x/feegrant/query.pb.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)