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
Here's a new take on solana-labs/solana-web3.js#1106. What if the actual problem is that we max out _rpcWebSocketGeneration such that it can't be incremented any more? After all, it has a ceiling of Number.MAX_SAFE_INTEGER.
Suggested fixes
Replace this with a bigint.
Implement wraparound logic.
The text was updated successfully, but these errors were encountered:
Here's a new take on solana-labs/solana-web3.js#1106. What if the actual problem is that we max out
_rpcWebSocketGeneration
such that it can't be incremented any more? After all, it has a ceiling ofNumber.MAX_SAFE_INTEGER
.Suggested fixes
bigint
.The text was updated successfully, but these errors were encountered: