Commit 2115061c authored by yann300's avatar yann300

remove jquery dep

parent 72619b99
'use strict'
var $ = require('jquery')
var ethJSABI = require('ethereumjs-abi')
/**
......@@ -38,7 +37,7 @@ class EventsDecoder {
_eventABI (contractName, compiledContracts) {
var contractabi = JSON.parse(compiledContracts[contractName].interface)
var eventABI = {}
$.each(contractabi, function (i, funABI) {
contractabi.forEach(function (funABI, i) {
if (funABI.type !== 'event') {
return
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment