Commit 0933a79a authored by Marek Kotewicz's avatar Marek Kotewicz

missing fromAscii

parent 543a87c6
......@@ -268,7 +268,8 @@ var methodSignature = function (json, name) {
result += inputTypes.join(',');
result += ')';
return web3.sha3(result);
return web3.sha3(web3.fromAscii(result));
//return web3.sha3(result);
};
module.exports = {
......
This diff is collapsed.
This diff is collapsed.
......@@ -267,7 +267,7 @@ var methodSignature = function (json, name) {
result += inputTypes.join(',');
result += ')';
return web3.sha3(result);
return web3.sha3(web3.fromAscii(result));
};
module.exports = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment