Mark utxos as spent

This commit is contained in:
Aditya Kulkarni
2019-09-13 19:13:09 -07:00
parent 66a82bdb88
commit b75da8724e
2 changed files with 8 additions and 6 deletions

View File

@@ -27,9 +27,11 @@ message TxFilter {
bytes hash = 3;
}
// RawTransaction contains the complete transaction data.
// RawTransaction contains the complete transaction data. It also optionally includes
// the block height in which the transaction was included
message RawTransaction {
bytes data = 1;
uint64 height = 2;
}
message SendResponse {