Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### Features ⚒

#### General
- \#2696 Add Rinkeby network deprecation warning (@leszko)

#### Broadcaster

Expand Down
4 changes: 4 additions & 0 deletions cmd/livepeer/starter/starter.go
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,10 @@ func StartLivepeer(ctx context.Context, cfg LivepeerConfig) {
},
}

if *cfg.Network == "rinkeby" || *cfg.Network == "arbitrum-one-rinkeby" {
glog.Warning("The Rinkeby/ArbRinkeby networks are deprecated in favor of the Goerli/ArbGoerli networks which will be launched in January 2023.")
}

// If multiple orchAddr specified, ensure other necessary flags present and clean up list
orchURLs := parseOrchAddrs(*cfg.OrchAddr)

Expand Down