sendmany: removing now unused SendManyInputUTXO class.

This commit is contained in:
furszy 2020-11-01 10:31:13 -03:00
parent 726daeee4e
commit 88eef56581
No known key found for this signature in database
GPG Key ID: 5DD23CCC686AA623
1 changed files with 0 additions and 12 deletions

View File

@ -37,18 +37,6 @@ public:
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;