From 5119b8844bbd44bc2dc8765774854727bc9b1388 Mon Sep 17 00:00:00 2001 From: Smilenator Date: Fri, 6 Jul 2018 10:10:39 +0300 Subject: [PATCH] fix another typo in TxDifference --- core/types/transaction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/types/transaction.go b/core/types/transaction.go index 65616f298d..82af9335ff 100644 --- a/core/types/transaction.go +++ b/core/types/transaction.go @@ -266,7 +266,7 @@ func (s Transactions) GetRlp(i int) []byte { return enc } -// TxDifference returns a new set which is the difference between a to b. +// TxDifference returns a new set which is the difference between a and b. func TxDifference(a, b Transactions) Transactions { keep := make(Transactions, 0, len(a))