plugeth/lib/event.js
2015-01-29 13:32:32 +01:00

17 lines
339 B
JavaScript

var abi = require('./abi');
var implementationOfEvent = function (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;