Skip to content

Commit

Permalink
Update version and infura endpoint. Had to change nil to 0 due to gol…
Browse files Browse the repository at this point in the history
…ang version issues
  • Loading branch information
ericxtang committed Mar 26, 2019
1 parent b26253a commit 3dfdbf5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cmd/livepeer/livepeer.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func main() {
if *rinkeby {
if !*offchain {
if *ethUrl == "" {
*ethUrl = "wss://rinkeby.infura.io/ws"
*ethUrl = "wss://rinkeby.infura.io/ws/v3/09642b98164d43eb890939eb9a7ec500"
}
if *controllerAddr == "" {
*controllerAddr = RinkebyControllerAddr
Expand All @@ -102,7 +102,7 @@ func main() {
} else {
if !*offchain {
if *ethUrl == "" {
*ethUrl = "wss://mainnet.infura.io/ws"
*ethUrl = "wss://mainnet.infura.io/ws/v3/be11162798084102a3519541eded12f6"
}
if *controllerAddr == "" {
*controllerAddr = MainnetControllerAddr
Expand Down
2 changes: 1 addition & 1 deletion core/livepeernode.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
var ErrLivepeerNode = errors.New("ErrLivepeerNode")
var ErrTranscode = errors.New("ErrTranscode")
var DefaultJobLength = int64(5760) //Avg 1 day in 15 sec blocks
var LivepeerVersion = "0.3.1-unstable"
var LivepeerVersion = "0.3.3-unstable"

type NodeType int

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3dfdbf5

Please sign in to comment.