Skip to content

Commit

Permalink
Minor refactoring and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb committed Nov 9, 2022
1 parent 1430877 commit c4a6360
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/IdentityProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export class IdentityProvider {
// https://github.com/TBD54566975/janky-wallet/blob/main/rfc/web5-did-authn.md
/** Initiates DID-based passwordless registration / login flows */
async authn() {
}
throw Error('Not implemented.');
}

// https://github.com/TBD54566975/janky-wallet/blob/main/rfc/web5-did-request.md
async request() {
Expand Down
3 changes: 1 addition & 2 deletions src/IndexerProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import { WebRequest, BlockcoreDns, ServiceListEntry } from '@blockcore/dns';

export class IndexerProvider {
private dns: BlockcoreDns;
// private network = 'STRAX'; // Should we default to BTC?
#network = 'STRAX';
#network = 'STRAX'; // Should we default to BTC?

public get network(): string {
return this.#network;
Expand Down

0 comments on commit c4a6360

Please sign in to comment.