mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-06 19:12:19 +00:00
10 lines
190 B
Go
10 lines
190 B
Go
package handler
|
|
|
|
import (
|
|
"github.com/ledgerwatch/erigon/cl/beacon/beaconhttp"
|
|
)
|
|
|
|
func newBeaconResponse(data any) *beaconhttp.BeaconResponse {
|
|
return beaconhttp.NewBeaconResponse(data)
|
|
}
|