From 52fc8df02a786a1a072d33fbc7c05a359d4a4738 Mon Sep 17 00:00:00 2001 From: "alex.sharov" Date: Sun, 1 Aug 2021 11:44:40 +0700 Subject: [PATCH] run --- txpool/pool.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/txpool/pool.go b/txpool/pool.go index 44391aef0..0e3f3cfea 100644 --- a/txpool/pool.go +++ b/txpool/pool.go @@ -98,12 +98,12 @@ func (mt *MetaTx) Less(than *MetaTx) bool { return mt.SubPool < than.SubPool } // means that strict nonce ordering of transactions from the same sender must be observed. - if mt.Tx.senderID != than.Tx.senderID { - return mt.Tx.senderID < than.Tx.senderID - } - if mt.Tx.nonce != than.Tx.nonce { - return mt.Tx.nonce < than.Tx.nonce - } + //if mt.Tx.senderID != than.Tx.senderID { + // return mt.Tx.senderID < than.Tx.senderID + //} + //if mt.Tx.nonce != than.Tx.nonce { + // return mt.Tx.nonce < than.Tx.nonce + //} return false }