mirror of https://github.com/status-im/op-geth.git
missing fromAscii
This commit is contained in:
parent
543a87c63f
commit
0933a79ab8
|
@ -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
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue