1
0
Fork 0
forked from lthn/blockchain

fixed problem with catch-return value

This commit is contained in:
cryptozoidberg 2021-11-17 16:39:52 +01:00
parent a2664f046f
commit bd3cd91379
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -842,7 +842,7 @@ QString MainWindow::export_wallet_history(const QString& param)
PREPARE_RESPONSE(view::api_response, ar);
ar.error_code = m_backend.export_wallet_history(ewi);
return MAKE_RESPONSE(ar);
CATCH_ENTRY2(false);
CATCH_ENTRY2(API_RETURN_CODE_INTERNAL_ERROR);
}
bool MainWindow::update_wallets_info(const view::wallets_summary_info& wsi)
{