-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature(toSlpRegtestAddress): #37
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,15 +6,16 @@ | |
"downlevelIteration": true, | ||
"moduleResolution": "node", | ||
"esModuleInterop": true, | ||
"lib":[ "es2017" ], | ||
"lib":[ "es2017","dom" ], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why is "dom" being included? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is a fix for an error
|
||
"declaration": true, | ||
"sourceMap": true, | ||
"plugins": [ | ||
{ "name": "typescript-tslint-plugin" } | ||
] | ||
}, | ||
"include": [ | ||
"lib/**/*.ts" | ||
"lib/**/*.ts", | ||
"./typings-custom/**/*.ts" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not able to find any "typings-custom" files. Why is this needed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, I forgot to remove that, it's actually not necessary. |
||
], | ||
"exclude": [ | ||
"node_modules", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this library being used? Afaict there isn't any difference other than the -2 version is behind by 1 commit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because the current bchaddrjs-slp don't have
toSlpRegtestAddress
.but I was able to get
toSlpRegtestAddress
working here for some reasonhttps://repl.it/@SuperCipher/bchaddr-test#index.js