mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
protocol: fix wrong tx being looked up from fluffy block
Found by smooth
This commit is contained in:
parent
c6102d5c1b
commit
b54e19d00e
1 changed files with 10 additions and 1 deletions
|
@ -548,7 +548,16 @@ namespace cryptonote
|
|||
tx_ids.push_back(tx_hash);
|
||||
if (m_core.get_transactions(tx_ids, txes, missing) && missing.empty())
|
||||
{
|
||||
have_tx.push_back(tx_to_blob(tx));
|
||||
if (txes.size() == 1)
|
||||
{
|
||||
have_tx.push_back(tx_to_blob(txes.front()));
|
||||
}
|
||||
else
|
||||
{
|
||||
MERROR("1 tx requested, none not found, but " << txes.size() << " returned");
|
||||
m_core.resume_mine();
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue