Skip to content

Commit

Permalink
add rpcs to eth namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
roshanrags committed Jun 30, 2023
1 parent 1228046 commit 6c4fef9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions internal/ethapi/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,11 @@ func GetAPIs(apiBackend Backend, chain *core.BlockChain) []rpc.API {
Version: "1.0",
Service: NewPrivateTxBundleAPI(apiBackend, chain),
Public: false,
}, {
Namespace: "eth",
Version: "1.0",
Service: NewPrivateTxBundleAPI(apiBackend, chain),
Public: true,
},
}
}

0 comments on commit 6c4fef9

Please sign in to comment.