From 29efe1fc7eccf3eb99a69c52427efbdb30de1a9f Mon Sep 17 00:00:00 2001
From: Marius van der Wijden <m.vanderwijden@live.de>
Date: Wed, 25 Nov 2020 08:53:20 +0100
Subject: [PATCH] core/types: fixed typo (#21897)

---
 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 ec1974488..177bfbb70 100644
--- a/core/types/transaction.go
+++ b/core/types/transaction.go
@@ -213,7 +213,7 @@ func (tx *Transaction) Hash() common.Hash {
 }
 
 // Size returns the true RLP encoded storage size of the transaction, either by
-// encoding and returning it, or returning a previsouly cached value.
+// encoding and returning it, or returning a previously cached value.
 func (tx *Transaction) Size() common.StorageSize {
 	if size := tx.size.Load(); size != nil {
 		return size.(common.StorageSize)
-- 
GitLab