Relax Entry Constraints
Summary
Remove the constraint that transaction entries cannot contain conflicting transactions.
Motivation
The current constraint that transactions within entries must not conflict with each other is unnecessary. It is a constraint, that made the current labs-client implementation easier, but is not required for the protocol to function correctly. The removal of this constraint simplifies the protocol, and allows more flexibility in the implementation of both block-produciton and block-validation.
Alternatives Considered
- Do nothing
- This is the simplest option, as we could leave the protocol as is. However, this leaves the protocol more complex than it needs to be.
- Remove the constraint, but execute conflicting transactions by priority.
- This is a more complex option than the current proposal.
- It also gives less flexibility to the block-producer, since transactions would be re-ordered.
New Terminology
Conflicting transactions are defined as transactions that either:
- both require a write-lock on the same account, or
- one transaction requires a write-lock, and the other requires a read-lock on the same account.
Tick entries are defined as entries that contain no transactions.
Detailed Design
Currently, if a transaction entry within a block contains transactions that conflict, the entire block is marked invalid. The proposal is that this constraint is removed entirely, and entries are allowed to contain transactions that conflict with each other.
If transactions within an entry conflict with each other, they must be executed sequentially, in the order they appear in the entry. This decision gives the most freedom in block-production, as it allows for arbitrary ordering of transactions within an entry by the block-producer.
If the proposal is accepted, the individual entry constraints are as follows:
-
Each entry must be deserializable via
bincode
(or equivalent) into a structure:struct Entry {
num_hashes: u64,
hash: Hash,
transactions: Vec<VersionedTransaction>,
}where
Hash
andVersionedTransaction
are defined insolana-sdk
. -
Tick entries are valid only if the sum of
num_hashes
in all entries, including the tick entry itself, since the previous tick entry match thehashes_per_tick
field of theBank
. This value is subject to change with feature gates, but is currently 12500. This means if a tick entry'snum_hashes
field exceeds thehashes_per_tick
field of theBank
, the entry is invalid.
If any of these constraints are violated, the entire block is invalid.
Impact
- The protocol is simplified
- Block-production is more flexible
Security Considerations
This proposal changes the protocol and would break consensus. This proposal will require a feature-gate, so that all validators can change behavior at the same time.
Drawbacks
None beyond the security considerations above.
Backwards Compatibility
This proposal is backwards compatible with the current protocol, since it only relaxes constraints, and does not add any new constraints. All previously valid blocks would still be valid. However, newly produced blocks may no longer be valid under the old protocol.