pusher updated to reflect most recent pull request for cald wallet

https://github.com/monero-project/monero/pull/1261
This commit is contained in:
moneroexamples 2016-10-26 08:17:07 +08:00
parent 02f022cbe9
commit 6c68a4944e
2 changed files with 4 additions and 4 deletions

View file

@ -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"

View file

@ -1369,7 +1369,7 @@ namespace xmreg {
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"]);
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<uint64_t> 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;