mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
searching for our mixins dont use custom lmdb now
This commit is contained in:
parent
255c9b50e4
commit
91c7dc7b51
1 changed files with 90 additions and 106 deletions
18
src/page.h
18
src/page.h
|
@ -1454,22 +1454,6 @@ public:
|
|||
bool found_something {false};
|
||||
|
||||
|
||||
// for each mixin output transaction, check if its ours
|
||||
// as before
|
||||
for (string tx_hash_str: found_tx_hashes)
|
||||
{
|
||||
crypto::hash tx_hash;
|
||||
|
||||
hex_to_pod(tx_hash_str, tx_hash);
|
||||
|
||||
transaction mixin_tx;
|
||||
|
||||
if (!mcore->get_tx(tx_hash, mixin_tx))
|
||||
{
|
||||
cerr << "Cant get tx in blockchain: " << tx_hash << endl;
|
||||
continue;
|
||||
}
|
||||
|
||||
public_key mixin_tx_pub_key
|
||||
= xmreg::get_tx_pub_key_from_received_outs(mixin_tx);
|
||||
|
||||
|
@ -1592,7 +1576,7 @@ public:
|
|||
|
||||
has_found_outputs = !found_outputs.empty();
|
||||
|
||||
} // for (string tx_hash_str: found_tx_hashes)
|
||||
|
||||
|
||||
has_mixin_outputs = found_something;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue