Skip to content

Commit cef8b11

Browse files
fixes to prevent CI error
1 parent 01d1a82 commit cef8b11

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

packages/client/src/MWPClient.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,24 @@ export class MWPClient {
4141
private readonly wallet: Wallet;
4242
private readonly keyManager: KeyManager;
4343
private readonly storage: ScopedAsyncStorage;
44-
private readonly domainVerification?: DomainVerification;
4544

4645
private accounts: AddressString[];
4746
private chain: Chain;
4847

49-
private constructor({ metadata, wallet, domainVerification }: MWPClientOptions) {
48+
private constructor({
49+
metadata,
50+
wallet,
51+
domainVerification: _domainVerification,
52+
}: MWPClientOptions) {
5053
this.metadata = {
5154
...metadata,
5255
name: metadata.name || 'Dapp',
5356
customScheme: appendMWPResponsePath(metadata.customScheme),
5457
};
5558

5659
this.wallet = wallet;
57-
this.domainVerification = domainVerification;
60+
// Domain verification will be implemented in a future update
61+
// this.domainVerification = domainVerification;
5862
this.keyManager = new KeyManager({ wallet: this.wallet });
5963
this.storage = new ScopedAsyncStorage(this.wallet.name, 'MWPClient');
6064

0 commit comments

Comments
 (0)