fix breaking change on null or undefined wallet (#2303)

Co-authored-by: henrye <henry@notanemail>
This commit is contained in:
Henry-E 2022-12-06 12:05:12 +00:00 committed by GitHub
parent 11af9a6624
commit 1bb1969d60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ The minor version will be incremented upon a breaking change and the patch versi
- ts: Update seeds inference to allow nested user defined structs within the seeds ([#2198](https://github.com/coral-xyz/anchor/pull/2198))
- event: Fix multiple event listeners with the same name. ([#2165](https://github.com/coral-xyz/anchor/pull/2165))
- lang: Prevent the payer account from being initialized as a program account. ([#2284](https://github.com/coral-xyz/anchor/pull/2284))
- ts: Fixing breaking change where null or undefined wallet throws an error. ([#2303](https://github.com/coral-xyz/anchor/pull/2303))
### Breaking

View File

@ -60,7 +60,7 @@ export class AnchorProvider implements Provider {
readonly wallet: Wallet,
readonly opts: ConfirmOptions
) {
this.publicKey = wallet.publicKey;
this.publicKey = wallet?.publicKey;
}
static defaultOptions(): ConfirmOptions {