From 61a01588778116b19d3a81fa4d795641e8b8de12 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Sat, 24 Jan 2015 16:46:46 -0800 Subject: Vanity addresses in AZ. Fixes to ethereum.js eth.flush() --- lib/abi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/abi.js') diff --git a/lib/abi.js b/lib/abi.js index 21580347d..1dc662152 100644 --- a/lib/abi.js +++ b/lib/abi.js @@ -128,7 +128,7 @@ var formatInputReal = function (value) { var dynamicTypeBytes = function (type, value) { // TODO: decide what to do with array of strings - if (arrayType(type) || prefixedType('string')(type)) + if (arrayType(type) || type == 'string') // only string itself that is dynamic; stringX is static length. return formatInputInt(value.length); return ""; }; -- cgit v1.2.3