From bab1e9a3970bb834d847f0faf481b0892db1ee15 Mon Sep 17 00:00:00 2001 From: kenshi84 Date: Sun, 5 Feb 2017 23:20:16 +0900 Subject: [PATCH] bugfix: infinite recursion in get_account_address_from_str_or_url --- src/cryptonote_core/cryptonote_basic_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cryptonote_core/cryptonote_basic_impl.cpp b/src/cryptonote_core/cryptonote_basic_impl.cpp index 51c9269a..338210f0 100644 --- a/src/cryptonote_core/cryptonote_basic_impl.cpp +++ b/src/cryptonote_core/cryptonote_basic_impl.cpp @@ -317,7 +317,7 @@ namespace cryptonote { { bool has_payment_id; crypto::hash8 payment_id; - return get_account_address_from_str_or_url(address, testnet, str_or_url); + return get_account_address_from_str_or_url(address, has_payment_id, payment_id, testnet, str_or_url); } //-------------------------------------------------------------------------------- bool operator ==(const cryptonote::transaction& a, const cryptonote::transaction& b) {