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
// Inspect the RPC error to ensure the method was not found, otherwise
// we actually ran into an error.
case*btcjson.RPCError:
iferr.Code!=btcjson.ErrRPCMethodNotFound.Code {
return0, fmt.Errorf("unable to detect ltcd version: "+
"%v", err)
}
default:
return0, fmt.Errorf("unable to detect ltcd version: %v", err)
Some node providers, such as getblock.io, return a 403 Forbidden for the getinfo API. As a result, it is unable to send transactions due to the inability to use the getinfo API. Is it better to skip the error on this API call?
The text was updated successfully, but these errors were encountered:
ltcd/rpcclient/infrastructure.go
Lines 1619 to 1640 in 64dfa40
Some node providers, such as getblock.io, return a 403 Forbidden for the getinfo API. As a result, it is unable to send transactions due to the inability to use the getinfo API. Is it better to skip the error on this API call?
The text was updated successfully, but these errors were encountered: