Skip to content

Commit

Permalink
(BIDS-2330) Merge remote-tracking branch 'origin/master' into BIDS-23…
Browse files Browse the repository at this point in the history
…30/fix-historic-orphan-blocks
  • Loading branch information
guybrush committed Dec 18, 2023
2 parents 23cc232 + 13f4451 commit 2ee9b7d
Show file tree
Hide file tree
Showing 38 changed files with 1,838 additions and 358 deletions.
2 changes: 1 addition & 1 deletion cmd/eth1indexer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ func main() {
if *enableEnsUpdater {
err := bt.ImportEnsUpdates(client.GetNativeClient())
if err != nil {
logrus.WithError(err).Errorf("error updating ens")
utils.LogError(err, "error importing ens updates", 0, nil)
continue
}
}
Expand Down
1 change: 1 addition & 0 deletions cmd/explorer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ func main() {
apiV1AuthRouter.HandleFunc("/validator/{pubkey}/add", handlers.UserValidatorWatchlistAdd).Methods("POST", "OPTIONS")
apiV1AuthRouter.HandleFunc("/validator/{pubkey}/remove", handlers.UserValidatorWatchlistRemove).Methods("POST", "OPTIONS")
apiV1AuthRouter.HandleFunc("/dashboard/save", handlers.UserDashboardWatchlistAdd).Methods("POST", "OPTIONS")
apiV1AuthRouter.HandleFunc("/dashboard/remove", handlers.UserDashboardWatchlistRemove).Methods("POST", "OPTIONS")
apiV1AuthRouter.HandleFunc("/notifications/bundled/subscribe", handlers.MultipleUsersNotificationsSubscribe).Methods("POST", "OPTIONS")
apiV1AuthRouter.HandleFunc("/notifications/bundled/unsubscribe", handlers.MultipleUsersNotificationsUnsubscribe).Methods("POST", "OPTIONS")
apiV1AuthRouter.HandleFunc("/notifications/subscribe", handlers.UserNotificationsSubscribe).Methods("POST", "OPTIONS")
Expand Down
Loading

0 comments on commit 2ee9b7d

Please sign in to comment.