mirror of
https://github.com/0xfnzero/solana-streamer.git
synced 2026-08-16 18:38:05 +00:00
16 lines
373 B
Protocol Buffer
Executable File
16 lines
373 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
package block;
|
|
import "shared.proto";
|
|
|
|
// Condensed block helpful for getting data around efficiently internal to our system.
|
|
message CondensedBlock {
|
|
shared.Header header = 1;
|
|
string previous_blockhash = 2;
|
|
string blockhash = 3;
|
|
uint64 parent_slot = 4;
|
|
repeated bytes versioned_transactions = 5;
|
|
uint64 slot = 6;
|
|
string commitment = 7;
|
|
}
|