diff options
author | Gav Wood <i@gavwood.com> | 2015-01-25 08:46:46 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-01-25 08:46:46 +0800 |
commit | 61a01588778116b19d3a81fa4d795641e8b8de12 (patch) | |
tree | 48f616562dfb272e5b7d7a4534c3c9de715e9ab3 /lib | |
parent | c01f0ae825184c2dac818ed52c704337106f855a (diff) | |
download | dexon-61a01588778116b19d3a81fa4d795641e8b8de12.tar dexon-61a01588778116b19d3a81fa4d795641e8b8de12.tar.gz dexon-61a01588778116b19d3a81fa4d795641e8b8de12.tar.bz2 dexon-61a01588778116b19d3a81fa4d795641e8b8de12.tar.lz dexon-61a01588778116b19d3a81fa4d795641e8b8de12.tar.xz dexon-61a01588778116b19d3a81fa4d795641e8b8de12.tar.zst dexon-61a01588778116b19d3a81fa4d795641e8b8de12.zip |
Vanity addresses in AZ.
Fixes to ethereum.js
eth.flush()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/abi.js | 2 | ||||
-rw-r--r-- | lib/web3.js | 1 |
2 files changed, 2 insertions, 1 deletions
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 ""; }; diff --git a/lib/web3.js b/lib/web3.js index 96002a232..7191adfe8 100644 --- a/lib/web3.js +++ b/lib/web3.js @@ -82,6 +82,7 @@ var ethMethods = function () { { name: 'transaction', call: transactionCall }, { name: 'uncle', call: uncleCall }, { name: 'compilers', call: 'eth_compilers' }, + { name: 'flush', call: 'eth_flush' }, { name: 'lll', call: 'eth_lll' }, { name: 'solidity', call: 'eth_solidity' }, { name: 'serpent', call: 'eth_serpent' }, |