diff options
author | Thomas Winget <tewinget@gmail.com> | 2014-07-06 13:13:06 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2014-07-06 13:13:06 -0400 |
commit | c6ffd810aff30c321a411f47544584ab6522713f (patch) | |
tree | 850d6b51e86f9c91221f67b6acd59ff158115d87 /src/simplewallet/simplewallet.h | |
parent | Merge pull request #55 from monero-project/revert-54-master (diff) | |
parent | needed to remove REQUIRED from find_package(Threads) (diff) | |
download | monero-c6ffd810aff30c321a411f47544584ab6522713f.tar.xz |
Merge pull request #56 from tewinget/master
transaction splitting
Diffstat (limited to 'src/simplewallet/simplewallet.h')
-rw-r--r-- | src/simplewallet/simplewallet.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/simplewallet/simplewallet.h b/src/simplewallet/simplewallet.h index 006cdd08e..e919cfeda 100644 --- a/src/simplewallet/simplewallet.h +++ b/src/simplewallet/simplewallet.h @@ -54,6 +54,9 @@ 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); + std::vector<std::vector<cryptonote::tx_destination_entry>> split_amounts( + std::vector<cryptonote::tx_destination_entry> dsts, size_t num_splits + ); 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); |