We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0608279 commit 0f3e261Copy full SHA for 0f3e261
src/electrumx/server/mempool.py
@@ -424,7 +424,7 @@ async def transaction_summaries(self, hashX):
424
tx = self.txs[tx_hash]
425
has_ui = any(hash in self.txs for hash, idx in tx.prevouts)
426
result.append(MemPoolTxSummary(tx_hash, tx.fee, has_ui))
427
- result.sort(key=lambda x: (x.has_unconfirmed_inputs, x.hash))
+ result.sort(key=lambda x: (x.has_unconfirmed_inputs, x.hash[::-1]))
428
return result
429
430
async def unordered_UTXOs(self, hashX):
0 commit comments