Commit c599b78f authored by Jim McDonald's avatar Jim McDonald

core/types: fix test for TransactionsByPriceAndNonce

parent cefeb585
...@@ -147,12 +147,12 @@ func TestTransactionPriceNonceSort(t *testing.T) { ...@@ -147,12 +147,12 @@ func TestTransactionPriceNonceSort(t *testing.T) {
txset := NewTransactionsByPriceAndNonce(signer, groups) txset := NewTransactionsByPriceAndNonce(signer, groups)
txs := Transactions{} txs := Transactions{}
for { for tx := txset.Peek(); tx != nil; tx = txset.Peek() {
if tx := txset.Peek(); tx != nil {
txs = append(txs, tx) txs = append(txs, tx)
txset.Shift() txset.Shift()
} }
break if len(txs) != 25*25 {
t.Errorf("expected %d transactions, found %d", 25*25, len(txs))
} }
for i, txi := range txs { for i, txi := range txs {
fromi, _ := Sender(signer, txi) fromi, _ := Sender(signer, txi)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment