File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
magicblock-chainlink/src/remote_account_provider Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 11use async_trait:: async_trait;
2+ use log:: * ;
23use solana_pubkey:: Pubkey ;
34use solana_sdk:: commitment_config:: CommitmentConfig ;
45
@@ -27,6 +28,10 @@ impl ChainUpdatesClient {
2728 format ! ( "Helius laser endpoint: {}" , endpoint. pubsub_url) ,
2829 ) ) ;
2930 } ;
31+ debug ! (
32+ "Initializing Helius Laser client for endpoint: {}" ,
33+ endpoint. pubsub_url
34+ ) ;
3035 ChainUpdatesClient :: Laser (
3136 ChainLaserClientImpl :: new_from_url (
3237 & url,
@@ -36,6 +41,10 @@ impl ChainUpdatesClient {
3641 . await ?,
3742 )
3843 } else {
44+ debug ! (
45+ "Initializing WebSocket client for endpoint: {}" ,
46+ endpoint. pubsub_url
47+ ) ;
3948 ChainUpdatesClient :: WebSocket (
4049 ChainPubsubClientImpl :: try_new_from_url (
4150 & endpoint. pubsub_url ,
You can’t perform that action at this time.
0 commit comments