Skip to content

Commit

Permalink
eth/catalyst: enable unauthenticated version of engine api
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusVanDerWijden committed Feb 25, 2022
1 parent f0471df commit 9f72640
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions eth/catalyst/api.go
Expand Up @@ -42,6 +42,13 @@ func Register(stack *node.Node, backend *eth.Ethereum) error {
Public: true,
Authenticated: true,
},
{
Namespace: "engine",
Version: "1.0",
Service: NewConsensusAPI(backend),
Public: true,
Authenticated: false,
},
})
return nil
}
Expand Down

0 comments on commit 9f72640

Please sign in to comment.