missing fromAscii

This commit is contained in:
Marek Kotewicz 2015-01-09 16:38:26 +01:00
parent 543a87c63f
commit 0933a79ab8
4 changed files with 6 additions and 5 deletions

3
dist/ethereum.js vendored
View File

@ -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 = {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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 = {