23 lines
444 B
Protocol Buffer
23 lines
444 B
Protocol Buffer
/*
|
|
Copyright IBM Corp. All Rights Reserved.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
syntax = "proto3";
|
|
|
|
option go_package = "github.com/hyperledger/fabric/common/ledger/blkstorage";
|
|
|
|
package msgs;
|
|
|
|
message txIDIndexValue {
|
|
bytes blk_location = 1;
|
|
bytes tx_location = 2;
|
|
int32 tx_validation_code = 3;
|
|
}
|
|
|
|
message bootstrappingSnapshotInfo {
|
|
uint64 lastBlockNum = 1;
|
|
bytes lastBlockHash = 2;
|
|
bytes previousBlockHash = 3;
|
|
} |