mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-28 01:36:42 +00:00

* [NOD-1512] Implement UTXO set deserialization * [NOD-1512] Remove redundant file * [NOD-1512] Don't use big endian for serialization * [NOD-1512] Use Read/Write element * [NOD-1512] Unexport ReadElement * [NOD-1512] Fix StageVirtualUTXOSet * [NOD-1512] Get rid of dagParams in consensusStateManager * [NOD-1512] Get rid of dagParams in consensusStateManager
12 lines
249 B
Protocol Buffer
12 lines
249 B
Protocol Buffer
syntax = "proto3";
|
|
package utxoserialization;
|
|
|
|
option go_package = "github.com/kaspanet/kaspad/domain/consensus/utils/utxoserialization";
|
|
|
|
message ProtoUTXO {
|
|
bytes entryOutpointPair = 1;
|
|
}
|
|
|
|
message ProtoUTXOSet {
|
|
repeated ProtoUTXO utxos = 1;
|
|
} |