Remove UTXOs call

This commit is contained in:
Aditya Kulkarni
2019-09-25 11:43:54 -07:00
parent 3c5d62dbc3
commit d59757571d
8 changed files with 91 additions and 250 deletions

View File

@@ -61,15 +61,6 @@ message TransparentAddressBlockFilter {
BlockRange range = 2;
}
message Utxo {
TransparentAddress address = 1;
bytes txid = 2;
uint64 outputIndex = 3;
bytes script = 4;
uint64 value = 5;
uint64 height = 6;
}
service CompactTxStreamer {
// Compact Blocks
rpc GetLatestBlock(ChainSpec) returns (BlockID) {}
@@ -81,7 +72,6 @@ service CompactTxStreamer {
rpc SendTransaction(RawTransaction) returns (SendResponse) {}
// t-Address support
rpc GetUtxos(TransparentAddress) returns (stream Utxo) {}
rpc GetAddressTxids(TransparentAddressBlockFilter) returns (stream RawTransaction) {}
// Misc