Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
fix: test windows ci issue, add module
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Jan 4, 2021
1 parent b2892f0 commit cd47f83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/pages/stacking/step/choose-btc-address.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const ChooseBtcAddressStep: FC<ChooseBtcAddressStepProps> = props => {
const address = validate(btcAddress);
if (!address) return { btcAddress: 'Invalid BTC address' };
if (NETWORK === 'mainnet' && address.network === 'testnet') {
return { btcAddress: 'Testnet addresses not supported' };
return { btcAddress: 'Testnet addresses not supported on Mainnet' };
}
// https://github.com/blockstack/stacks-blockchain/issues/1902
if (!SUPPORTED_BTC_ADDRESS_FORMATS.includes(address.type as any)) {
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@
"browserslist-config-erb": "0.0.1",
"chalk": "4.1.0",
"circular-dependency-plugin": "5.2.2",
"concat-map": "0.0.1",
"concurrently": "5.3.0",
"copy-webpack-plugin": "6.3.0",
"cross-env": "7.0.2",
Expand Down

0 comments on commit cd47f83

Please sign in to comment.