Skip to content

Commit

Permalink
chore: improve request prepare proposal comments (#1393)
Browse files Browse the repository at this point in the history
Closes #1390
  • Loading branch information
rootulp committed Jun 18, 2024
1 parent cc8842f commit 056df6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions abci/types/types.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions proto/tendermint/abci/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,11 @@ message RequestApplySnapshotChunk {
}

message RequestPrepareProposal {
// block_data is an array of transactions that will be included in a block,
// sent to the app for possible modifications.
// applications can not exceed the size of the data passed to it.
// BlockData is a slice of candidate transactions that may be included in a
// block. BlockData is sent to the application so that the application can
// filter and re-arrange the slice of candidate transactions.
tendermint.types.Data block_data = 1;
// If an application decides to populate block_data with extra information, they can not exceed this value.
// BlockDataSize is the maximum size (in bytes) that BlockData should be.
int64 block_data_size = 2;
// chain_id is a unique identifier for the blockchain network this proposal
// belongs to (e.g. mocha-1).
Expand Down

0 comments on commit 056df6c

Please sign in to comment.