Fix #523 relevant to #452

This commit is contained in:
Daniel Larimer 2016-02-09 07:59:22 -05:00 committed by theoreticalbts
parent d60c8a255e
commit ababf24e69
2 changed files with 2 additions and 2 deletions

View file

@ -759,7 +759,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

@ -3787,7 +3787,7 @@ 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() );