github.com/osdi23p228/fabric@v0.0.0-20221218062954-77808885f5db/common/ledger/blkstorage/storage.proto (about)

     1  /*
     2  Copyright IBM Corp. All Rights Reserved.
     3  
     4  SPDX-License-Identifier: Apache-2.0
     5  */
     6  
     7  syntax = "proto3";
     8  
     9  option go_package = "github.com/osdi23p228/fabric/common/ledger/blkstorage";
    10  
    11  package msgs;
    12  
    13  message txIDIndexValue {
    14      bytes blk_location = 1;
    15      bytes tx_location = 2;
    16      int32 tx_validation_code = 3;
    17  }
    18  
    19  message bootstrappingSnapshotInfo {
    20      uint64 lastBlockNum = 1;
    21      bytes lastBlockHash = 2;
    22      bytes previousBlockHash = 3;
    23  }