github.com/hechain20/hechain@v0.0.0-20220316014945-b544036ba106/core/ledger/kvledger/txmgmt/txmgr/updates.proto (about)

     1  /*
     2  Copyright hechain. All Rights Reserved.
     3  
     4  SPDX-License-Identifier: Apache-2.0
     5  */
     6  
     7  syntax = "proto3";
     8  
     9  option go_package = "github.com/hechain20/hechain/core/ledger/kvledger/txmgmt/txmgr";
    10  
    11  package txmgr;
    12  
    13  message KVWrite {
    14      string namespace = 1;
    15      string collection = 2;
    16      bytes key = 3;
    17      bool isDelete = 4;
    18      bytes value = 5;
    19      bytes version_bytes = 6;
    20  }
    21  
    22  message Updates {
    23      repeated KVWrite kvwrites = 1;
    24  }