File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -495,7 +495,7 @@ const calculateTransferNftGas = async (toAddr: string, nftId: string) => {
495495 } catch ( ex ) {
496496 console . error ( "Gas estimation failed:" , ex ) ;
497497 }
498- }
498+ } ;
499499
500500const transferNft = async ( toAddr : string , nftId : string ) => {
501501 if ( ! CoNET_Data ) {
@@ -533,7 +533,7 @@ const transferNft = async (toAddr: string, nftId: string) => {
533533 console . log ( ex ) ;
534534 throw ex ;
535535 }
536- }
536+ } ;
537537
538538const getVpnTimeUsed = async ( ) => {
539539 if ( ! CoNET_Data ?. profiles [ 0 ] ) return ;
@@ -672,11 +672,14 @@ const getPassportsInfo = async (
672672 }
673673} ;
674674
675- const refreshSolanaBalances = async ( solanaProfile : profile , node : nodes_info ) => {
676- if ( ! node ) {
677- return
678- }
679- const solanaRPC_url = `http://${ node . domain } /solana-rpc`
675+ const refreshSolanaBalances = async (
676+ solanaProfile : profile ,
677+ node : nodes_info
678+ ) => {
679+ if ( ! node ) {
680+ return ;
681+ }
682+ const solanaRPC_url = `https://${ node . domain } /solana-rpc` ;
680683 try {
681684 const [ sol , sp ] = await Promise . all ( [
682685 scanSolanaSol ( solanaProfile . keyID , solanaRPC_url ) ,
You can’t perform that action at this time.
0 commit comments