core/types: fix test for TransactionsByPriceAndNonce

This commit is contained in:
Jim McDonald 2017-10-11 11:35:44 +01:00 committed by Vincent Serpoul
parent 21eedab9b5
commit 7f4623b8ef

View file

@ -147,12 +147,12 @@ func TestTransactionPriceNonceSort(t *testing.T) {
txset := NewTransactionsByPriceAndNonce(signer, groups)
txs := Transactions{}
for {
if tx := txset.Peek(); tx != nil {
for tx := txset.Peek(); tx != nil; tx = txset.Peek() {
txs = append(txs, tx)
txset.Shift()
}
break
if len(txs) != 25*25 {
t.Errorf("expected %d transactions, found %d", 25*25, len(txs))
}
for i, txi := range txs {
fromi, _ := Sender(signer, txi)