eth/catalyst: remove unauthenticated 'engine' api (#24997)

Removes engine from any unauthenticated RPC service.
This commit is contained in:
Martin Holst Swende 2022-06-08 15:36:25 +02:00 committed by GitHub
parent c4dab8ceca
commit b60a08d2fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,13 +47,6 @@ 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
}