diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-07 21:20:28 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-17 16:12:24 +0000 |
commit | dffa0dceaf54e00266525d2f3edd18cce05d0e16 (patch) | |
tree | 4c4340d6f4a6a59f7b108809d24c3278157ba556 /src/simplewallet/simplewallet.h | |
parent | simplewallet: add multisig to wallet type in wallet_info output (diff) | |
download | monero-dffa0dceaf54e00266525d2f3edd18cce05d0e16.tar.xz |
simplewallet: add export_raw_multisig command
It exports raw transactions, so they may be used by other tools,
for instance to be relayed to the network externally.
Diffstat (limited to 'src/simplewallet/simplewallet.h')
-rw-r--r-- | src/simplewallet/simplewallet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index 73b3456db..c0c33f6b8 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -196,6 +196,7 @@ namespace cryptonote bool accept_loaded_tx(const tools::wallet2::multisig_tx_set &txs); bool sign_multisig(const std::vector<std::string>& args); bool submit_multisig(const std::vector<std::string>& args); + bool export_raw_multisig(const std::vector<std::string>& args); uint64_t get_daemon_blockchain_height(std::string& err); bool try_connect_to_daemon(bool silent = false, uint32_t* version = nullptr); |