diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-29 20:32:32 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-01-29 20:32:32 +0800 |
commit | c8ee08c24bee9ab994822066f9abe94448c4ae89 (patch) | |
tree | 46a08904dee77a8e7b1a6a771dfeb5e73d47e81a /lib/event.js | |
parent | 842b8cf323a3b39d9e29ddd831bc41ddb98279ad (diff) | |
download | dexon-c8ee08c24bee9ab994822066f9abe94448c4ae89.tar dexon-c8ee08c24bee9ab994822066f9abe94448c4ae89.tar.gz dexon-c8ee08c24bee9ab994822066f9abe94448c4ae89.tar.bz2 dexon-c8ee08c24bee9ab994822066f9abe94448c4ae89.tar.lz dexon-c8ee08c24bee9ab994822066f9abe94448c4ae89.tar.xz dexon-c8ee08c24bee9ab994822066f9abe94448c4ae89.tar.zst dexon-c8ee08c24bee9ab994822066f9abe94448c4ae89.zip |
contract.js simplified
Diffstat (limited to 'lib/event.js')
-rw-r--r-- | lib/event.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/event.js b/lib/event.js index 724acde81..e8312ccdb 100644 --- a/lib/event.js +++ b/lib/event.js @@ -1,7 +1,7 @@ var abi = require('./abi'); -var implementationOfEvent = function (event, address, signature) { +var implementationOfEvent = function (address, signature) { return function (options) { var o = options || {}; |