Skip to content

Commit 1bc670f

Browse files
turn of authenticated engine_ requests until we can rebase the beacon nodes
1 parent 219d446 commit 1bc670f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

eth/catalyst/api.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@ func Register(stack *node.Node, backend *eth.Ethereum) error {
4343
log.Warn("Engine API enabled", "protocol", "eth")
4444
stack.RegisterAPIs([]rpc.API{
4545
{
46-
Namespace: "engine",
47-
Service: NewConsensusAPI(backend),
48-
Authenticated: true,
46+
Namespace: "engine",
47+
Service: NewConsensusAPI(backend),
48+
//Authenticated: true,
49+
Authenticated: false, // TODO(roberto-bayardo): change this to true once we update the beacon client
4950
},
5051
})
5152
return nil

0 commit comments

Comments
 (0)