forked from cerc-io/plugeth
missing fromAscii
This commit is contained in:
Vendored
+2
-1
@@ -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 = {
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+1
-1
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user