We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8402a commit a9a7288Copy full SHA for a9a7288
packages/connect-multichain/src/multichain/transports/default/index.ts
@@ -312,6 +312,9 @@ export class DefaultTransport implements ExtendedTransport {
312
}
313
314
getActiveSession(): Promise<Session | undefined> {
315
+ // This code path should never be triggered when the DefaultTransport is being used
316
+ // It's only purpose is for exposing the session ID used for deeplinking to the mobile app
317
+ // and so it is only implemented for the MWPTransport.
318
throw new Error('getActiveSession is purposely not implemented for the DefaultTransport');
319
320
0 commit comments