You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The signature export function decodePubkey(pubkey?: Any | null): Pubkey | null { is not very helpful since the caller always has to handle the null case even if the input is not optional.
The signature
export function decodePubkey(pubkey?: Any | null): Pubkey | null {
is not very helpful since the caller always has to handle the null case even if the input is not optional.Increas, caller code should be changed like this:
The text was updated successfully, but these errors were encountered: