From b6d6efcdcc87b6dc268d23148ccc6758d431c5b6 Mon Sep 17 00:00:00 2001 From: Aditya Sripal Date: Fri, 17 Aug 2018 15:11:25 -0700 Subject: [PATCH] core/types: fix protected doc --- 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 82af9335ff..9c6e77be98 100644 --- a/core/types/transaction.go +++ b/core/types/transaction.go @@ -119,7 +119,7 @@ func isProtectedV(V *big.Int) bool { v := V.Uint64() return v != 27 && v != 28 } - // anything not 27 or 28 are considered unprotected + // anything not 27 or 28 is considered protected return true }