From 93ddda2dd666160246d36332036c7ebbf5e1617e Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Fri, 8 Dec 2017 13:59:12 +1100 Subject: [PATCH] eip55: consistent JS syntax --- EIPS/eip-55.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EIPS/eip-55.md b/EIPS/eip-55.md index 8979a772..b428ab38 100644 --- a/EIPS/eip-55.md +++ b/EIPS/eip-55.md @@ -52,7 +52,7 @@ In javascript: const createKeccakHash = require('keccak') function toChecksumAddress (address) { - address = address.toLowerCase().replace('0x',''); + address = address.toLowerCase().replace('0x', '') var hash = createKeccakHash('keccak256').update(address).digest('hex') var ret = '0x'