first add of getrawmempool - work in progress

This commit is contained in:
DenioD
2020-05-12 00:19:51 +02:00
parent 1da0f0e321
commit 431847ab49
4 changed files with 58 additions and 1 deletions

View File

@@ -66,6 +66,10 @@ message Coinsupply {
int64 total = 6;
}
message RawMempool {
string ID = 1;
}
message TransparentAddress {
string address = 1;
}
@@ -91,4 +95,5 @@ service CompactTxStreamer {
// Misc
rpc GetLightdInfo(Empty) returns (LightdInfo) {}
rpc GetCoinsupply(Empty) returns (Coinsupply) {}
rpc GetRawMempool(Empty) returns (RawMempool) {}
}