mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 04:03:49 +00:00
a8ec9eb471
Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro-2.local>
18 lines
346 B
Go
18 lines
346 B
Go
package requests
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ledgerwatch/log/v3"
|
|
)
|
|
|
|
func PingErigonRpc(reqId int, logger log.Logger) error {
|
|
reqGen := initialiseRequestGenerator(reqId, logger)
|
|
res := reqGen.PingErigonRpc()
|
|
if res.Err != nil {
|
|
return fmt.Errorf("failed to ping erigon rpc url: %v", res.Err)
|
|
}
|
|
logger.Info("SUCCESS => OK")
|
|
return nil
|
|
}
|