aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.cpp
diff options
context:
space:
mode:
authorthankful_for_today <my email>2014-04-18 12:55:52 +0400
committerthankful_for_today <my email>2014-04-18 12:55:52 +0400
commit147aac7c504ab200905e769e0dc5598925b567de (patch)
tree0ccea849508d174c39f16db77b197c7d366ae9b6 /src/wallet/wallet2.cpp
parentBitmonero release (diff)
downloadmonero-147aac7c504ab200905e769e0dc5598925b567de.tar.xz
checkpoints removed
Diffstat (limited to '')
-rw-r--r--src/wallet/wallet2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index e8b6c22fd..6a573c49e 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -416,7 +416,7 @@ bool wallet2::check_connection()
net_utils::http::url_content u;
net_utils::parse_url(m_daemon_address, u);
if(!u.port)
- u.port = 8081;
+ u.port = RPC_DEFAULT_PORT;
return m_http_client.connect(u.host, std::to_string(u.port), WALLET_RCP_CONNECTION_TIMEOUT);
}
//----------------------------------------------------------------------------------------------------