diff options
author | tom <tewinget@gmail.com> | 2014-06-15 17:20:16 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2014-06-30 07:16:50 -0400 |
commit | 79e59d155b9873156180f3b2f8b696cf9b8d84ab (patch) | |
tree | 4a91014e3e0663eed667caff802e8411b993003a /src/simplewallet/simplewallet.h | |
parent | Added comments to wallet functions (diff) | |
download | monero-79e59d155b9873156180f3b2f8b696cf9b8d84ab.tar.xz |
working on dividing functions in prep for tx splitting
Diffstat (limited to 'src/simplewallet/simplewallet.h')
-rw-r--r-- | src/simplewallet/simplewallet.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index 006cdd08e..2f0d17313 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -54,6 +54,10 @@ namespace cryptonote bool show_payments(const std::vector<std::string> &args); bool show_blockchain_height(const std::vector<std::string> &args); bool transfer(const std::vector<std::string> &args); + vector<vector<cryptonote::tx_destination_entry>> simple_wallet::split_amounts( + vector<cryptonote::tx_destination_entry> dsts, size_t num_splits + ); + void create_transactions(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 print_address(const std::vector<std::string> &args = std::vector<std::string>()); bool save(const std::vector<std::string> &args); bool set_log(const std::vector<std::string> &args); |