mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #1627
55a8e982
moved get_account_address_from_str_or_url from libcommon to libcryptonote_core (kenshi84)
This commit is contained in:
commit
ca2e2c2453
5 changed files with 48 additions and 29 deletions
|
@ -451,22 +451,6 @@ std::string get_account_address_as_str_from_url(const std::string& url, bool& dn
|
||||||
return addresses[0];
|
return addresses[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
bool get_account_address_from_str_or_url(
|
|
||||||
cryptonote::account_public_address& address
|
|
||||||
, bool& has_payment_id
|
|
||||||
, crypto::hash8& payment_id
|
|
||||||
, bool testnet
|
|
||||||
, const std::string& str_or_url
|
|
||||||
)
|
|
||||||
{
|
|
||||||
if (cryptonote::get_account_integrated_address_from_str(address, has_payment_id, payment_id, testnet, str_or_url))
|
|
||||||
return true;
|
|
||||||
bool dnssec_valid;
|
|
||||||
std::string address_str = get_account_address_as_str_from_url(str_or_url, dnssec_valid);
|
|
||||||
return !address_str.empty() &&
|
|
||||||
cryptonote::get_account_integrated_address_from_str(address, has_payment_id, payment_id, testnet, address_str);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace tools::dns_utils
|
} // namespace tools::dns_utils
|
||||||
|
|
||||||
} // namespace tools
|
} // namespace tools
|
||||||
|
|
|
@ -164,13 +164,6 @@ std::string address_from_txt_record(const std::string& s);
|
||||||
std::vector<std::string> addresses_from_url(const std::string& url, bool& dnssec_valid);
|
std::vector<std::string> addresses_from_url(const std::string& url, bool& dnssec_valid);
|
||||||
|
|
||||||
std::string get_account_address_as_str_from_url(const std::string& url, bool& dnssec_valid);
|
std::string get_account_address_as_str_from_url(const std::string& url, bool& dnssec_valid);
|
||||||
bool get_account_address_from_str_or_url(
|
|
||||||
cryptonote::account_public_address& address
|
|
||||||
, bool& has_payment_id
|
|
||||||
, crypto::hash8& payment_id
|
|
||||||
, bool testnet
|
|
||||||
, const std::string& str_or_url
|
|
||||||
);
|
|
||||||
|
|
||||||
} // namespace tools::dns_utils
|
} // namespace tools::dns_utils
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,7 @@ using namespace epee;
|
||||||
#include "common/base58.h"
|
#include "common/base58.h"
|
||||||
#include "crypto/hash.h"
|
#include "crypto/hash.h"
|
||||||
#include "common/int-util.h"
|
#include "common/int-util.h"
|
||||||
|
#include "common/dns_utils.h"
|
||||||
|
|
||||||
#undef MONERO_DEFAULT_LOG_CATEGORY
|
#undef MONERO_DEFAULT_LOG_CATEGORY
|
||||||
#define MONERO_DEFAULT_LOG_CATEGORY "cn"
|
#define MONERO_DEFAULT_LOG_CATEGORY "cn"
|
||||||
|
@ -291,7 +292,34 @@ namespace cryptonote {
|
||||||
crypto::hash8 payment_id;
|
crypto::hash8 payment_id;
|
||||||
return get_account_integrated_address_from_str(adr, has_payment_id, payment_id, testnet, str);
|
return get_account_integrated_address_from_str(adr, has_payment_id, payment_id, testnet, str);
|
||||||
}
|
}
|
||||||
|
//--------------------------------------------------------------------------------
|
||||||
|
bool get_account_address_from_str_or_url(
|
||||||
|
cryptonote::account_public_address& address
|
||||||
|
, bool& has_payment_id
|
||||||
|
, crypto::hash8& payment_id
|
||||||
|
, bool testnet
|
||||||
|
, const std::string& str_or_url
|
||||||
|
)
|
||||||
|
{
|
||||||
|
if (get_account_integrated_address_from_str(address, has_payment_id, payment_id, testnet, str_or_url))
|
||||||
|
return true;
|
||||||
|
bool dnssec_valid;
|
||||||
|
std::string address_str = tools::dns_utils::get_account_address_as_str_from_url(str_or_url, dnssec_valid);
|
||||||
|
return !address_str.empty() &&
|
||||||
|
get_account_integrated_address_from_str(address, has_payment_id, payment_id, testnet, address_str);
|
||||||
|
}
|
||||||
|
//--------------------------------------------------------------------------------
|
||||||
|
bool get_account_address_from_str_or_url(
|
||||||
|
cryptonote::account_public_address& address
|
||||||
|
, bool testnet
|
||||||
|
, const std::string& str_or_url
|
||||||
|
)
|
||||||
|
{
|
||||||
|
bool has_payment_id;
|
||||||
|
crypto::hash8 payment_id;
|
||||||
|
return get_account_address_from_str_or_url(address, testnet, str_or_url);
|
||||||
|
}
|
||||||
|
//--------------------------------------------------------------------------------
|
||||||
bool operator ==(const cryptonote::transaction& a, const cryptonote::transaction& b) {
|
bool operator ==(const cryptonote::transaction& a, const cryptonote::transaction& b) {
|
||||||
return cryptonote::get_transaction_hash(a) == cryptonote::get_transaction_hash(b);
|
return cryptonote::get_transaction_hash(a) == cryptonote::get_transaction_hash(b);
|
||||||
}
|
}
|
||||||
|
|
|
@ -100,6 +100,20 @@ namespace cryptonote {
|
||||||
, const std::string& str
|
, const std::string& str
|
||||||
);
|
);
|
||||||
|
|
||||||
|
bool get_account_address_from_str_or_url(
|
||||||
|
cryptonote::account_public_address& address
|
||||||
|
, bool& has_payment_id
|
||||||
|
, crypto::hash8& payment_id
|
||||||
|
, bool testnet
|
||||||
|
, const std::string& str_or_url
|
||||||
|
);
|
||||||
|
|
||||||
|
bool get_account_address_from_str_or_url(
|
||||||
|
cryptonote::account_public_address& address
|
||||||
|
, bool testnet
|
||||||
|
, const std::string& str_or_url
|
||||||
|
);
|
||||||
|
|
||||||
bool is_coinbase(const transaction& tx);
|
bool is_coinbase(const transaction& tx);
|
||||||
|
|
||||||
bool operator ==(const cryptonote::transaction& a, const cryptonote::transaction& b);
|
bool operator ==(const cryptonote::transaction& a, const cryptonote::transaction& b);
|
||||||
|
|
|
@ -2143,7 +2143,7 @@ bool simple_wallet::transfer_main(int transfer_type, const std::vector<std::stri
|
||||||
cryptonote::tx_destination_entry de;
|
cryptonote::tx_destination_entry de;
|
||||||
bool has_payment_id;
|
bool has_payment_id;
|
||||||
crypto::hash8 new_payment_id;
|
crypto::hash8 new_payment_id;
|
||||||
if (!tools::dns_utils::get_account_address_from_str_or_url(de.addr, has_payment_id, new_payment_id, m_wallet->testnet(), local_args[i]))
|
if (!cryptonote::get_account_address_from_str_or_url(de.addr, has_payment_id, new_payment_id, m_wallet->testnet(), local_args[i]))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (has_payment_id)
|
if (has_payment_id)
|
||||||
|
@ -2636,7 +2636,7 @@ bool simple_wallet::sweep_all(const std::vector<std::string> &args_)
|
||||||
bool has_payment_id;
|
bool has_payment_id;
|
||||||
crypto::hash8 new_payment_id;
|
crypto::hash8 new_payment_id;
|
||||||
cryptonote::account_public_address address;
|
cryptonote::account_public_address address;
|
||||||
if (!tools::dns_utils::get_account_address_from_str_or_url(address, has_payment_id, new_payment_id, m_wallet->testnet(), local_args[0]))
|
if (!cryptonote::get_account_address_from_str_or_url(address, has_payment_id, new_payment_id, m_wallet->testnet(), local_args[0]))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
if (has_payment_id)
|
if (has_payment_id)
|
||||||
|
@ -3187,7 +3187,7 @@ bool simple_wallet::check_tx_key(const std::vector<std::string> &args_)
|
||||||
cryptonote::account_public_address address;
|
cryptonote::account_public_address address;
|
||||||
bool has_payment_id;
|
bool has_payment_id;
|
||||||
crypto::hash8 payment_id;
|
crypto::hash8 payment_id;
|
||||||
if(!tools::dns_utils::get_account_address_from_str_or_url(address, has_payment_id, payment_id, m_wallet->testnet(), local_args[2]))
|
if(!cryptonote::get_account_address_from_str_or_url(address, has_payment_id, payment_id, m_wallet->testnet(), local_args[2]))
|
||||||
{
|
{
|
||||||
fail_msg_writer() << tr("failed to parse address");
|
fail_msg_writer() << tr("failed to parse address");
|
||||||
return true;
|
return true;
|
||||||
|
@ -3735,7 +3735,7 @@ bool simple_wallet::address_book(const std::vector<std::string> &args/* = std::v
|
||||||
cryptonote::account_public_address address;
|
cryptonote::account_public_address address;
|
||||||
bool has_payment_id;
|
bool has_payment_id;
|
||||||
crypto::hash8 payment_id8;
|
crypto::hash8 payment_id8;
|
||||||
if(!tools::dns_utils::get_account_address_from_str_or_url(address, has_payment_id, payment_id8, m_wallet->testnet(), args[1]))
|
if(!cryptonote::get_account_address_from_str_or_url(address, has_payment_id, payment_id8, m_wallet->testnet(), args[1]))
|
||||||
{
|
{
|
||||||
fail_msg_writer() << tr("failed to parse address");
|
fail_msg_writer() << tr("failed to parse address");
|
||||||
return true;
|
return true;
|
||||||
|
@ -3925,7 +3925,7 @@ bool simple_wallet::verify(const std::vector<std::string> &args)
|
||||||
cryptonote::account_public_address address;
|
cryptonote::account_public_address address;
|
||||||
bool has_payment_id;
|
bool has_payment_id;
|
||||||
crypto::hash8 payment_id;
|
crypto::hash8 payment_id;
|
||||||
if(!tools::dns_utils::get_account_address_from_str_or_url(address, has_payment_id, payment_id, m_wallet->testnet(), address_string))
|
if(!cryptonote::get_account_address_from_str_or_url(address, has_payment_id, payment_id, m_wallet->testnet(), address_string))
|
||||||
{
|
{
|
||||||
fail_msg_writer() << tr("failed to parse address");
|
fail_msg_writer() << tr("failed to parse address");
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue