update signature of transfer_to_blind
This commit is contained in:
parent
ab0d789d72
commit
1c9d5c602c
2 changed files with 3 additions and 2 deletions
|
|
@ -733,7 +733,7 @@ class wallet_api
|
||||||
blind_confirmation transfer_to_blind( string from_account_id_or_name,
|
blind_confirmation transfer_to_blind( string from_account_id_or_name,
|
||||||
string asset_symbol,
|
string asset_symbol,
|
||||||
/** map from key or label to amount */
|
/** map from key or label to amount */
|
||||||
map<string, string> to_amounts,
|
vector<pair<string, string>> to_amounts,
|
||||||
bool broadcast = false );
|
bool broadcast = false );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -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,
|
blind_confirmation wallet_api::transfer_to_blind( string from_account_id_or_name,
|
||||||
string asset_symbol,
|
string asset_symbol,
|
||||||
/** map from key or label to amount */
|
/** map from key or label to amount */
|
||||||
map<string, string> to_amounts,
|
vector<pair<string, string>> to_amounts,
|
||||||
bool broadcast )
|
bool broadcast )
|
||||||
{ try {
|
{ try {
|
||||||
FC_ASSERT( !is_locked() );
|
FC_ASSERT( !is_locked() );
|
||||||
|
idump((to_amounts));
|
||||||
|
|
||||||
blind_confirmation confirm;
|
blind_confirmation confirm;
|
||||||
account_object from_account = my->get_account(from_account_id_or_name);
|
account_object from_account = my->get_account(from_account_id_or_name);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue