_currentAbi object

This commit is contained in:
Marek Kotewicz 2015-01-20 17:46:37 +01:00
parent 380c1522ac
commit 848c54dc47
1 changed files with 1 additions and 0 deletions

View File

@ -79,6 +79,7 @@ var contract = function (address, desc) {
extra.to = address;
return abi.methodSignature(desc, method.name).then(function (signature) {
extra.data = signature.slice(0, 2 + ETH_METHOD_SIGNATURE_LENGTH * 2) + parsed;
web3._currentAbi = desc;
return web3.eth.transact(extra).then(onSuccess);
});
}