erigon-pulse/cl/beacon/handler/pool.go

26 lines
822 B
Go
Raw Normal View History

package handler
import (
"net/http"
"github.com/ledgerwatch/erigon/cl/clparams"
)
func (a *ApiHandler) poolVoluntaryExits(r *http.Request) (data any, finalized *bool, version *clparams.StateVersion, httpStatus int, err error) {
httpStatus = http.StatusAccepted
data = a.operationsPool.VoluntaryExistsPool.Raw()
return
}
func (a *ApiHandler) poolAttesterSlashings(r *http.Request) (data any, finalized *bool, version *clparams.StateVersion, httpStatus int, err error) {
httpStatus = http.StatusAccepted
data = a.operationsPool.AttesterSlashingsPool.Raw()
return
}
func (a *ApiHandler) poolProposerSlashings(r *http.Request) (data any, finalized *bool, version *clparams.StateVersion, httpStatus int, err error) {
httpStatus = http.StatusAccepted
data = a.operationsPool.ProposerSlashingsPool.Raw()
return
}