Skip to content

Commit

Permalink
Fix #523 relevant to #452
Browse files Browse the repository at this point in the history
  • Loading branch information
bytemaster committed Feb 9, 2016
1 parent 0dade36 commit a3e609d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libraries/wallet/include/graphene/wallet/wallet.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,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 );

/**
Expand Down
2 changes: 1 addition & 1 deletion libraries/wallet/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3880,7 +3880,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() );
Expand Down

0 comments on commit a3e609d

Please sign in to comment.