pusher updated to reflect most recent pull request for cald wallet

https://github.com/monero-project/monero/pull/1261
master
moneroexamples 8 years ago
parent 02f022cbe9
commit 6c68a4944e

@ -9,8 +9,8 @@
#define BLOCKCHAIN_DB DB_LMDB #define BLOCKCHAIN_DB DB_LMDB
#define UNSIGNED_TX_PREFIX "Monero unsigned tx set\001" #define UNSIGNED_TX_PREFIX "Monero unsigned tx set\002"
#define SIGNED_TX_PREFIX "Monero signed tx set\001" #define SIGNED_TX_PREFIX "Monero signed tx set\002"
#include "net/http_base.h" #include "net/http_base.h"

@ -1369,7 +1369,7 @@ namespace xmreg {
mstch::array& dest_sources = boost::get<mstch::array>(tx_cd_data["dest_sources"]); mstch::array& dest_sources = boost::get<mstch::array>(tx_cd_data["dest_sources"]);
mstch::array& dest_infos = boost::get<mstch::array>(tx_cd_data["dest_infos"]); mstch::array& dest_infos = boost::get<mstch::array>(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 { mstch::map dest_info {
{"dest_address" , get_account_address_as_str(testnet, a_dest.addr)}, {"dest_address" , get_account_address_as_str(testnet, a_dest.addr)},
@ -1611,7 +1611,7 @@ namespace xmreg {
vector<uint64_t> real_ammounts; vector<uint64_t> real_ammounts;
// destiantion address for this tx // 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}); //stealth_address_amount.insert({dest.addr, dest.amount});
cout << get_account_address_as_str(testnet, a_dest.addr) << endl; cout << get_account_address_as_str(testnet, a_dest.addr) << endl;

Loading…
Cancel
Save