mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
fix another typo in TxDifference
This commit is contained in:
parent
4c392c30db
commit
5119b8844b
1 changed files with 1 additions and 1 deletions
|
|
@ -266,7 +266,7 @@ func (s Transactions) GetRlp(i int) []byte {
|
||||||
return enc
|
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 {
|
func TxDifference(a, b Transactions) Transactions {
|
||||||
keep := make(Transactions, 0, len(a))
|
keep := make(Transactions, 0, len(a))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue