From 1c9d5c602c799d577d4de0af3e424a3caac4b73d Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Tue, 20 Oct 2015 13:41:14 -0400 Subject: [PATCH] update signature of transfer_to_blind --- libraries/wallet/include/graphene/wallet/wallet.hpp | 2 +- libraries/wallet/wallet.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libraries/wallet/include/graphene/wallet/wallet.hpp b/libraries/wallet/include/graphene/wallet/wallet.hpp index 7065bee1..7f86aeb5 100644 --- a/libraries/wallet/include/graphene/wallet/wallet.hpp +++ b/libraries/wallet/include/graphene/wallet/wallet.hpp @@ -733,7 +733,7 @@ class wallet_api blind_confirmation transfer_to_blind( string from_account_id_or_name, string asset_symbol, /** map from key or label to amount */ - map to_amounts, + vector> to_amounts, bool broadcast = false ); /** diff --git a/libraries/wallet/wallet.cpp b/libraries/wallet/wallet.cpp index 836c45a0..0342f9cf 100644 --- a/libraries/wallet/wallet.cpp +++ b/libraries/wallet/wallet.cpp @@ -3615,10 +3615,11 @@ blind_confirmation wallet_api::blind_transfer_help( string from_key_or_label, blind_confirmation wallet_api::transfer_to_blind( string from_account_id_or_name, string asset_symbol, /** map from key or label to amount */ - map to_amounts, + vector> to_amounts, bool broadcast ) { try { FC_ASSERT( !is_locked() ); + idump((to_amounts)); blind_confirmation confirm; account_object from_account = my->get_account(from_account_id_or_name);