mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 04:03:49 +00:00
c408281d3b
Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro-2.local>
21 lines
528 B
Go
21 lines
528 B
Go
package requests
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ledgerwatch/erigon/cmd/devnet/models"
|
|
"github.com/ledgerwatch/erigon/p2p"
|
|
"github.com/ledgerwatch/log/v3"
|
|
)
|
|
|
|
func AdminNodeInfo(reqId int, logger log.Logger) (p2p.NodeInfo, error) {
|
|
reqGen := initialiseRequestGenerator(reqId, logger)
|
|
var b models.AdminNodeInfoResponse
|
|
|
|
if res := reqGen.Erigon(models.AdminNodeInfo, reqGen.GetAdminNodeInfo(), &b); res.Err != nil {
|
|
return p2p.NodeInfo{}, fmt.Errorf("failed to get admin node info: %v", res.Err)
|
|
}
|
|
|
|
return b.Result, nil
|
|
}
|