sha3 method signature

This commit is contained in:
Marek Kotewicz
2015-01-09 12:55:04 +01:00
parent 807ec60e63
commit 0538c11576
5 changed files with 40 additions and 12 deletions

View File

@ -46,8 +46,10 @@ var contract = function (address, desc) {
call: function (extra) {
extra = extra || {};
extra.to = address;
extra.data = parsed;
return web3.eth.call(extra).then(onSuccess);
return abi.methodSignature(desc, method.name).then(function (signature) {
extra.data = signature.slice(0, 10) + parsed;
return web3.eth.call(extra).then(onSuccess);
});
},
transact: function (extra) {
extra = extra || {};