浏览代码

core/types: fix docs about protected Vs (#17436)

Aditya 7 年之前
父节点
当前提交
c929030e28
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/types/transaction.go

+ 1 - 1
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
 }