mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
fix: show integrated address details
This commit is contained in:
parent
96b07baa57
commit
ec43aee699
1 changed files with 21 additions and 26 deletions
47
src/page.h
47
src/page.h
|
@ -3454,7 +3454,7 @@ namespace xmreg
|
||||||
|
|
||||||
bool testnet_addr {false};
|
bool testnet_addr {false};
|
||||||
|
|
||||||
if (search_text[0] == '9' || search_text[0] == 'A')
|
if (search_text[0] == '9' || search_text[0] == 'A' || search_text[0] == 'B')
|
||||||
testnet_addr = true;
|
testnet_addr = true;
|
||||||
|
|
||||||
if (!xmreg::parse_str_address(search_text, address_info, testnet_addr))
|
if (!xmreg::parse_str_address(search_text, address_info, testnet_addr))
|
||||||
|
@ -3467,31 +3467,26 @@ namespace xmreg
|
||||||
return show_address_details(address_info, testnet_addr);
|
return show_address_details(address_info, testnet_addr);
|
||||||
}
|
}
|
||||||
|
|
||||||
// // check if integrated monero address is given based on its length
|
// check if integrated monero address is given based on its length
|
||||||
// // if yes, then show its public components search tx based on encrypted id
|
// if yes, then show its public components search tx based on encrypted id
|
||||||
// @todo does not work with integrated address for now
|
if (search_str_length == 106)
|
||||||
// if (search_str_length == 106)
|
{
|
||||||
// {
|
|
||||||
//
|
cryptonote::account_public_address address;
|
||||||
// cryptonote::account_public_address address;
|
|
||||||
//
|
address_parse_info address_info;
|
||||||
// bool has_payment_id;
|
|
||||||
//
|
if (!get_account_address_from_str(address_info, testnet, search_text))
|
||||||
// crypto::hash8 encrypted_payment_id;
|
{
|
||||||
//
|
cerr << "Cant parse string integerated address: " << search_text << endl;
|
||||||
// if (!get_account_integrated_address_from_str(address_info.address,
|
return string("Cant parse address (probably incorrect format): ")
|
||||||
// has_payment_id,
|
+ search_text;
|
||||||
// encrypted_payment_id,
|
}
|
||||||
// testnet,
|
|
||||||
// search_text))
|
return show_integrated_address_details(address_info,
|
||||||
// {
|
address_info.payment_id,
|
||||||
// cerr << "Cant parse string integerated address: " << search_text << endl;
|
testnet);
|
||||||
// return string("Cant parse address (probably incorrect format): ")
|
}
|
||||||
// + search_text;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// return show_integrated_address_details(address_info.address, encrypted_payment_id, testnet);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// all_possible_tx_hashes was field using custom lmdb database
|
// all_possible_tx_hashes was field using custom lmdb database
|
||||||
// it was dropped, so all_possible_tx_hashes will be alwasy empty
|
// it was dropped, so all_possible_tx_hashes will be alwasy empty
|
||||||
|
|
Loading…
Reference in a new issue