solana/runtime
ivandzen 2f9146e8c8
Replace txn_signature in ReplicaAccountInfo with transaction (#30189)
#### Current implementation of ReplicaAccountInfo restricts
possibilities for inflight account filtration
Current implementation includes transaction signature in
ReplicaAccountInfo. This approach does not allow to filter accounts by
matching other accounts in transaction in-flight (e. g. accept only
those accounts included in transactions for specific programs). Current
implementation forces to collect ALL accounts and transactions for some
period of time and perform such complex filtration afterwards.

#### Pass reference to transaction object instead of transaction
signature into ReplicaAccountInfo
Advanced in-flight filtration can be implemented in plugins by passing
reference to transaction for every update_account event. This change
doesn't bring any overhead comparing to current implementation (only
data type of reference is changed) and brings only minor changes in
source code.
2023-02-09 12:00:33 -08:00
..
benches Renames fn to calculate_accounts_delta_hash() (#29876) 2023-01-24 18:55:56 -05:00
src Replace txn_signature in ReplicaAccountInfo with transaction (#30189) 2023-02-09 12:00:33 -08:00
store-tool Bump version to v1.16 (#30028) 2023-01-31 17:48:33 -06:00
tests Move bank tests to separate file (#29912) 2023-02-02 16:32:22 -08:00
.gitignore
Cargo.toml Bump serde from 1.0.144 to 1.0.152 (#29696) 2023-02-01 16:27:17 -07:00
build.rs