Skip to content

Commit

Permalink
Issue link in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffro256 committed Feb 2, 2023
1 parent e553285 commit 9ec27b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/simplewallet/simplewallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ void simple_wallet::handle_transfer_exception(const std::exception_ptr &e, bool
}
catch (const tools::error::deprecated_rpc_access&)
{
fail_msg_writer() << tr("Daemon requires deprecated RPC payment.");
fail_msg_writer() << tr("Daemon requires deprecated RPC payment. See https://github.com/monero-project/monero/issues/8722");
}
catch (const tools::error::no_connection_to_daemon&)
{
Expand Down Expand Up @@ -5632,7 +5632,7 @@ bool simple_wallet::refresh_main(uint64_t start_height, enum ResetType reset, bo
}
catch (const tools::error::deprecated_rpc_access&)
{
ss << tr("Daemon requires deprecated RPC payment. See ");
ss << tr("Daemon requires deprecated RPC payment. See https://github.com/monero-project/monero/issues/8722");
}
catch (const tools::error::wallet_rpc_error& e)
{
Expand Down Expand Up @@ -5970,7 +5970,7 @@ bool simple_wallet::rescan_spent(const std::vector<std::string> &args)
}
catch (const tools::error::deprecated_rpc_access&)
{
fail_msg_writer() << tr("Daemon requires deprecated RPC payment.");
fail_msg_writer() << tr("Daemon requires deprecated RPC payment. See https://github.com/monero-project/monero/issues/8722");
}
catch (const tools::error::is_key_image_spent_error&)
{
Expand Down

0 comments on commit 9ec27b0

Please sign in to comment.