Skip to content

Commit 30d962e

Browse files
chore(gitignore): ignore iml files
Created by IntelliJ Issue: BG-34381
1 parent 618184e commit 30d962e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.swp
2+
*.iml
23
.idea/
34
node_modules
45
npm-debug.log

app/sign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const Promise = require('bluebird');
22
const co = Promise.coroutine;
3-
const utxoLib = require('bitgo-utxo-lib');
3+
const utxoLib = require('@bitgo/utxo-lib');
44
const accountLib = require('@bitgo/account-lib');
55
const statics = require('@bitgo/statics');
66
const fs = require('fs');

app/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const nodemailer = require('nodemailer');
66
const smtpTransport = require('nodemailer-smtp-transport');
77
const jsrender = require('jsrender');
88
const prova = require('prova-lib');
9-
const utxoLib = require('bitgo-utxo-lib');
9+
const utxolib = require('@bitgo/utxo-lib');
1010
const stellar = require('stellar-base');
1111
const stellarHd = require('stellar-hd-wallet');
1212
const rippleParse = require('ripple-binary-codec');
@@ -111,7 +111,7 @@ function IsValidBip32Seed(input) {
111111

112112
exports.deriveChildKey = function(master, derivationPath, type, neuter) {
113113
if (type === 'xpub' || type === 'xprv') {
114-
const masterNode = utxoLib.HDNode.fromBase58(master);
114+
const masterNode = utxolib.HDNode.fromBase58(master);
115115
const childKey = masterNode.derivePath(derivationPath);
116116

117117
if (neuter) {

0 commit comments

Comments
 (0)