-
Notifications
You must be signed in to change notification settings - Fork 1
fix: wallet issues in roblox widget #912
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
fix: wallet issues in roblox widget #912
Conversation
constructor(provider: Provider, signer?: Signer, connectedSigner?: Signer) { | ||
this._provider = provider; | ||
this.uuid = crypto.randomUUID(); | ||
this._signer = signer | ||
? signer.connect(this._provider) | ||
: this._provider.getSigner(); | ||
if (connectedSigner) { | ||
this._signer = connectedSigner; | ||
} else { | ||
this._signer = signer | ||
? signer.connect(this._provider) | ||
: this._provider.getSigner(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have to check again if this can be reverted
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #912 +/- ##
==========================================
- Coverage 90.02% 90.01% -0.02%
==========================================
Files 163 163
Lines 6056 6059 +3
Branches 945 947 +2
==========================================
+ Hits 5452 5454 +2
- Misses 604 605 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
No description provided.