Skip to content

Commit

Permalink
sendmany: removing now unused SendManyInputUTXO class.
Browse files Browse the repository at this point in the history
  • Loading branch information
furszy committed Nov 13, 2020
1 parent 726daee commit 88eef56
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/wallet/asyncrpcoperation_sendmany.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,6 @@ class SendManyRecipient {
address(address_), amount(amount_), memo(memo_) {}
};

class SendManyInputUTXO {
public:
uint256 txid;
int vout;
CScript scriptPubKey;
CAmount amount;
bool coinbase;

SendManyInputUTXO(uint256 txid_, int vout_, CScript scriptPubKey_, CAmount amount_, bool coinbase_) :
txid(txid_), vout(vout_), scriptPubKey(scriptPubKey_), amount(amount_), coinbase(coinbase_) {}
};

class SendManyInputJSOP {
public:
JSOutPoint point;
Expand Down

0 comments on commit 88eef56

Please sign in to comment.