From 6c68a4944e579952d462ea792ba1fa717c27e6be Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Wed, 26 Oct 2016 08:17:07 +0800 Subject: [PATCH] pusher updated to reflect most recent pull request for cald wallet https://github.com/monero-project/monero/pull/1261 --- src/monero_headers.h | 4 ++-- src/page.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/monero_headers.h b/src/monero_headers.h index fccc924..59be3b0 100644 --- a/src/monero_headers.h +++ b/src/monero_headers.h @@ -9,8 +9,8 @@ #define BLOCKCHAIN_DB DB_LMDB -#define UNSIGNED_TX_PREFIX "Monero unsigned tx set\001" -#define SIGNED_TX_PREFIX "Monero signed tx set\001" +#define UNSIGNED_TX_PREFIX "Monero unsigned tx set\002" +#define SIGNED_TX_PREFIX "Monero signed tx set\002" #include "net/http_base.h" diff --git a/src/page.h b/src/page.h index 177ac6e..4384726 100644 --- a/src/page.h +++ b/src/page.h @@ -1369,7 +1369,7 @@ namespace xmreg { mstch::array& dest_sources = boost::get(tx_cd_data["dest_sources"]); mstch::array& dest_infos = boost::get(tx_cd_data["dest_infos"]); - for (const tx_destination_entry& a_dest: tx_cd.destinations) + for (const tx_destination_entry& a_dest: tx_cd.splitted_dsts) { mstch::map dest_info { {"dest_address" , get_account_address_as_str(testnet, a_dest.addr)}, @@ -1611,7 +1611,7 @@ namespace xmreg { vector real_ammounts; // destiantion address for this tx - for (tx_destination_entry& a_dest: ptx.construction_data.destinations) + for (tx_destination_entry& a_dest: ptx.construction_data.splitted_dsts) { //stealth_address_amount.insert({dest.addr, dest.amount}); cout << get_account_address_as_str(testnet, a_dest.addr) << endl;