Replies: 1 comment
-
Solana documentation declared these methods as deprecated, so we followed them. It's also a good reminder that very soon they will become unsupported so you have to be prepared. To overcome the code analyzer issue, just disable this specific warning for that line.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Stable version of mainnet-beta is 1.6.26.
With solnet 0.4.8 I am forced to use following method for getting confirmed transaction:
GetTransactionAsync
Because mainnet-beta is 1.6.26 this doesn't work as it gives
method not found
rpc error response. I also cannot use obsolete methodgetConfirmedTransactionAsync
or however the name was which uses 1.6.26 method, due to my code analyzer tool. Problem is obv solved if I could just ignore and use obsolete method but the thing is that in my opinion method is not obsolete if it is required for 1.6.26. Obsolete should only be added once 1.7+ is stable, which uses new method.Thoughts?
Beta Was this translation helpful? Give feedback.
All reactions