update signature of transfer_to_blind

This commit is contained in:
Daniel Larimer 2015-10-20 13:41:14 -04:00
parent ab0d789d72
commit 1c9d5c602c
2 changed files with 3 additions and 2 deletions

View file

@ -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<string, string> to_amounts,
vector<pair<string, string>> to_amounts,
bool broadcast = false );
/**

View file

@ -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<string, string> to_amounts,
vector<pair<string, string>> 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);