Skip to content

Commit

Permalink
Removed camel case in module name as it causes issues on some OS. Fix…
Browse files Browse the repository at this point in the history
…ed issues with modules names in tests.
  • Loading branch information
tboydston committed Apr 15, 2021
1 parent 82a45c9 commit 7cc203e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hdAddressGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const nanoUtil = require('nanocurrency-web')
const bchSlpUtil = require('bchaddrjs-slp')
const bchaddr = require('bchaddrjs')

const coinList = require('coinNetworkList')
const coinList = require('coinnetworklist')

class AddressGenerator {

Expand Down
2 changes: 1 addition & 1 deletion tests/addressConversion.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const assert = require('assert');
const settings = require("./settings")

const Gen = require("../generator.js")
const Gen = require("../hdAddressGenerator.js")
const genBCH = Gen.withMnemonic(settings.mnemonic,false,"BCH")
const genSLP = Gen.withMnemonic(settings.mnemonic,false,"SLP")

Expand Down
2 changes: 1 addition & 1 deletion tests/bip32Seed.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const assert = require('assert');
const settings = require("./settings")

const Gen = require("../generator.js")
const Gen = require("../hdAddressGenerator.js")
const gen = Gen.withMnemonic(settings.mnemonic,false,"BTC")

describe('bip39seed', () => {
Expand Down

0 comments on commit 7cc203e

Please sign in to comment.