Browse Source

Exclude and Balance

master
Jonathan "Duke" Leto 2 years ago
parent
commit
eeabb6c8bd
  1. 1
      frontend/service.go
  2. 8
      walletrpc/service.proto

1
frontend/service.go

@ -1,3 +1,4 @@
// Package frontend implements the gRPC handlers called by the wallets.
package frontend
import (

8
walletrpc/service.proto

@ -74,6 +74,14 @@ message TransparentAddressBlockFilter {
BlockRange range = 2;
}
message Balance {
int64 valueZat = 1;
}
message Exclude {
repeated bytes txid = 1;
}
service CompactTxStreamer {
// Compact Blocks
rpc GetLatestBlock(ChainSpec) returns (BlockID) {}

Loading…
Cancel
Save