Using Provider.inherits.

This commit is contained in:
ricmoo 2017-04-04 17:28:25 -04:00
parent c10c3b937c
commit 4075f330e2

@ -2,15 +2,13 @@
// See: https://github.com/ethereum/wiki/wiki/JSON-RPC
var inherits = require('inherits');
var Provider = require('./provider.js');
var utils = (function() {
return {
defineProperty: require('ethers-utils/properties.js').defineProperty,
defineProperty: require('ethers-utils/properties').defineProperty,
hexlify: require('ethers-utils/convert.js').hexlify,
hexlify: require('ethers-utils/convert').hexlify,
}
})();