diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-04-26 18:08:09 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-04-26 18:08:09 +0200 |
commit | 714dcc2866ee40c766b653b74683be75abcae2b5 (patch) | |
tree | 1e2dafa4affc9813e05610e6d1b8caee2c7a6f75 /src/wallet/wallet2.h | |
parent | Merge pull request #814 (diff) | |
parent | wallet: add a new sweep_all command and RPC command (diff) | |
download | monero-714dcc2866ee40c766b653b74683be75abcae2b5.tar.xz |
Merge pull request #815
b0850a9 wallet: add a new sweep_all command and RPC command (moneromooo-monero)
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 89c157c16..e76d7a0aa 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -290,6 +290,7 @@ namespace tools void commit_tx(std::vector<pending_tx>& ptx_vector); std::vector<pending_tx> create_transactions(std::vector<cryptonote::tx_destination_entry> dsts, const size_t fake_outs_count, const uint64_t unlock_time, const uint64_t fee, const std::vector<uint8_t> extra, bool trusted_daemon); std::vector<wallet2::pending_tx> create_transactions_2(std::vector<cryptonote::tx_destination_entry> dsts, const size_t fake_outs_count, const uint64_t unlock_time, const uint64_t fee_UNUSED, const std::vector<uint8_t> extra, bool trusted_daemon); + std::vector<wallet2::pending_tx> create_transactions_all(const cryptonote::account_public_address &address, const size_t fake_outs_count, const uint64_t unlock_time, const uint64_t fee_UNUSED, const std::vector<uint8_t> extra, bool trusted_daemon); std::vector<pending_tx> create_unmixable_sweep_transactions(bool trusted_daemon); bool check_connection(); void get_transfers(wallet2::transfer_container& incoming_transfers) const; |