aboutsummaryrefslogtreecommitdiff
path: root/src/simplewallet/simplewallet.h
diff options
context:
space:
mode:
authortom <tewinget@gmail.com>2014-06-15 17:20:16 -0400
committerThomas Winget <tewinget@gmail.com>2014-06-30 07:16:50 -0400
commit79e59d155b9873156180f3b2f8b696cf9b8d84ab (patch)
tree4a91014e3e0663eed667caff802e8411b993003a /src/simplewallet/simplewallet.h
parentAdded comments to wallet functions (diff)
downloadmonero-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.h4
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);