diff options
author | spoke0 <s7243244@gmail.com> | 2019-03-05 14:42:43 +0100 |
---|---|---|
committer | spoke0 <s7243244@gmail.com> | 2019-03-05 14:42:43 +0100 |
commit | 8b51464516a1e242965b81d1287535d7693c168d (patch) | |
tree | 053a7a681a82b8d69451fcf6671cbd89f55949d4 /src/wallet/wallet2.h | |
parent | Merge pull request #4988 (diff) | |
download | monero-8b51464516a1e242965b81d1287535d7693c168d.tar.xz |
add multisig tx sets to describe_transfer rpc endpoint
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 3b2dd6076..09fc49d21 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -793,6 +793,7 @@ namespace tools void cold_tx_aux_import(const std::vector<pending_tx>& ptx, const std::vector<std::string>& tx_device_aux); void cold_sign_tx(const std::vector<pending_tx>& ptx_vector, signed_tx_set &exported_txs, std::vector<cryptonote::address_parse_info> &dsts_info, std::vector<std::string> & tx_device_aux); uint64_t cold_key_image_sync(uint64_t &spent, uint64_t &unspent); + bool parse_multisig_tx_from_str(std::string multisig_tx_st, multisig_tx_set &exported_txs) const; bool load_multisig_tx(cryptonote::blobdata blob, multisig_tx_set &exported_txs, std::function<bool(const multisig_tx_set&)> accept_func = NULL); bool load_multisig_tx_from_file(const std::string &filename, multisig_tx_set &exported_txs, std::function<bool(const multisig_tx_set&)> accept_func = NULL); bool sign_multisig_tx_from_file(const std::string &filename, std::vector<crypto::hash> &txids, std::function<bool(const multisig_tx_set&)> accept_func); |