Skip to content

Commit

Permalink
Replace const keywords with var to support ES5 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammadrafigh committed Mar 6, 2018
1 parent 01382b1 commit c6a57f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions hdkey.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const HDKey = require('hdkey')
const Wallet = require('./index.js')
var HDKey = require('hdkey')
var Wallet = require('./index.js')

function EthereumHDKey () {
}
Expand Down
4 changes: 2 additions & 2 deletions provider-engine.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'

const inherits = require('util').inherits
const HookedWalletEthTxSubprovider = require('web3-provider-engine/subproviders/hooked-wallet-ethtx')
var inherits = require('util').inherits
var HookedWalletEthTxSubprovider = require('web3-provider-engine/subproviders/hooked-wallet-ethtx')

module.exports = WalletSubprovider

Expand Down

0 comments on commit c6a57f9

Please # to comment.