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
{{ message }}
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
The solana-validator --private-rpc ... flag allows validators to hide their RPC port from the rest of the cluster while retaining it open for their private use. But this breaks the solana catchup command, which relies on finding the validator's RPC port in gossip.
For solana catchup to work in this configuration, --private-rpc users will need to tell solana catchup their RPC port. The best option I see for this right now is to Expand solana catchup <PUBKEY> to solana catchup <PUBKEY or RPC URL>:
$ solana catchup http://127.0.0.1:8899
The text was updated successfully, but these errors were encountered:
The
solana-validator --private-rpc ...
flag allows validators to hide their RPC port from the rest of the cluster while retaining it open for their private use. But this breaks thesolana catchup
command, which relies on finding the validator's RPC port in gossip.For
solana catchup
to work in this configuration,--private-rpc
users will need to tellsolana catchup
their RPC port. The best option I see for this right now is to Expandsolana catchup <PUBKEY>
tosolana catchup <PUBKEY or RPC URL>
:The text was updated successfully, but these errors were encountered: