aboutsummaryrefslogtreecommitdiffstats
path: root/core/types/transaction_test.go
diff options
context:
space:
mode:
authorMark <markya0616@gmail.com>2017-09-08 05:22:27 +0800
committerFelix Lange <fjl@users.noreply.github.com>2017-09-08 05:22:27 +0800
commitc1740e454015e61e8207cdeb34c48eee3adbb4d3 (patch)
treecf9ac38c8a8ff8ad3aec9d542e1f2c6632122511 /core/types/transaction_test.go
parente3db1236de65619d26e87eb7c886e565fcc2eafc (diff)
downloadgo-tangerine-c1740e454015e61e8207cdeb34c48eee3adbb4d3.tar.gz
go-tangerine-c1740e454015e61e8207cdeb34c48eee3adbb4d3.tar.zst
go-tangerine-c1740e454015e61e8207cdeb34c48eee3adbb4d3.zip
core/types, miner: avoid tx sender miscaching (#14773)
Diffstat (limited to 'core/types/transaction_test.go')
-rw-r--r--core/types/transaction_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/types/transaction_test.go b/core/types/transaction_test.go
index edbe171e6..df9d7ffd1 100644
--- a/core/types/transaction_test.go
+++ b/core/types/transaction_test.go
@@ -143,7 +143,7 @@ func TestTransactionPriceNonceSort(t *testing.T) {
}
}
// Sort the transactions and cross check the nonce ordering
- txset := NewTransactionsByPriceAndNonce(groups)
+ txset := NewTransactionsByPriceAndNonce(signer, groups)
txs := Transactions{}
for {