plugeth/lib/event.js
Marek Kotewicz 842b8cf323 event.js
2015-01-29 12:35:21 +01:00

17 lines
346 B
JavaScript

var abi = require('./abi');
var implementationOfEvent = function (event, address, signature) {
return function (options) {
var o = options || {};
o.address = o.address || address;
o.topics = o.topics || [];
o.topics.push(signature);
return o;
};
};
module.exports = implementationOfEvent;