From b109b3e5900f61aa468752d3137b4419445858e3 Mon Sep 17 00:00:00 2001 From: hadv Date: Tue, 31 Jul 2018 16:46:03 +0700 Subject: [PATCH] core/vm: fix typo in cryptographic hash function name --- core/vm/contracts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/contracts.go b/core/vm/contracts.go index 237450ea96..20b741f8f1 100644 --- a/core/vm/contracts.go +++ b/core/vm/contracts.go @@ -116,7 +116,7 @@ func (c *sha256hash) Run(input []byte) ([]byte, error) { return h[:], nil } -// RIPMED160 implemented as a native contract. +// RIPEMD160 implemented as a native contract. type ripemd160hash struct{} // RequiredGas returns the gas required to execute the pre-compiled contract.