Skip to content

Commit c4a6360

Browse files
committed
Minor refactoring and cleanup
1 parent 1430877 commit c4a6360

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/IdentityProvider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ export class IdentityProvider {
88
// https://github.com/TBD54566975/janky-wallet/blob/main/rfc/web5-did-authn.md
99
/** Initiates DID-based passwordless registration / login flows */
1010
async authn() {
11-
12-
}
11+
throw Error('Not implemented.');
12+
}
1313

1414
// https://github.com/TBD54566975/janky-wallet/blob/main/rfc/web5-did-request.md
1515
async request() {

src/IndexerProvider.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import { WebRequest, BlockcoreDns, ServiceListEntry } from '@blockcore/dns';
33

44
export class IndexerProvider {
55
private dns: BlockcoreDns;
6-
// private network = 'STRAX'; // Should we default to BTC?
7-
#network = 'STRAX';
6+
#network = 'STRAX'; // Should we default to BTC?
87

98
public get network(): string {
109
return this.#network;

0 commit comments

Comments
 (0)