Commit 2ea0aa61 authored by Ubuntu's avatar Ubuntu

checktx with blockhash ?

parent 09cad5f9
# Generated by buf. DO NOT EDIT.
version: v1
...@@ -30,7 +30,7 @@ message BatchVerifyRequest { ...@@ -30,7 +30,7 @@ message BatchVerifyRequest {
message BatchVerifyResponse { message BatchVerifyResponse {
string id = 1; string id = 1;
repeated bytes from = 2; repeated bool verified = 2;
} }
......
# Generated by buf. DO NOT EDIT.
version: v1
...@@ -19,6 +19,7 @@ message BatchCheckTxRequest { ...@@ -19,6 +19,7 @@ message BatchCheckTxRequest {
// From []byte // From []byte
// RW []byte // RW []byte
// Tx *types.Transaction // Tx *types.Transaction
// BlockHash []byte ???
// } // }
// The standard BatchGet response definition. // The standard BatchGet response definition.
......
...@@ -5,7 +5,7 @@ package txchecker.v1; ...@@ -5,7 +5,7 @@ package txchecker.v1;
import "txchecker/v1/request_response.proto"; import "txchecker/v1/request_response.proto";
service ShelfService { service ShelfService {
rpc BatchGetShelves(BatchCheckTxRequest) returns (BatchCheckTxResponse) {} rpc BatchCheckTx(BatchCheckTxRequest) returns (BatchCheckTxResponse) {}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment