Skip to content

Commit

Permalink
Ref bitshares#1670: Fix build against latest develop
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielhourt committed Apr 9, 2019
1 parent 94e3aac commit 159a0cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libraries/wallet/wallet.cpp
Expand Up @@ -1890,7 +1890,7 @@ class wallet_api_impl

signed_transaction tx;
tx.operations.push_back(create_op);
set_operation_fees( tx, _remote_db->get_global_properties().parameters.current_fees);
set_operation_fees( tx, _remote_db->get_global_properties().parameters.get_current_fees());
tx.validate();

return sign_transaction(tx, broadcast);
Expand All @@ -1915,7 +1915,7 @@ class wallet_api_impl

signed_transaction tx;
tx.operations.push_back(update_op);
set_operation_fees( tx, _remote_db->get_global_properties().parameters.current_fees);
set_operation_fees( tx, _remote_db->get_global_properties().parameters.get_current_fees());
tx.validate();

return sign_transaction(tx, broadcast);
Expand All @@ -1939,7 +1939,7 @@ class wallet_api_impl

signed_transaction tx;
tx.operations.push_back(update_op);
set_operation_fees( tx, _remote_db->get_global_properties().parameters.current_fees);
set_operation_fees( tx, _remote_db->get_global_properties().parameters.get_current_fees());
tx.validate();

return sign_transaction(tx, broadcast);
Expand Down

0 comments on commit 159a0cc

Please sign in to comment.