From dcc3250d169db350c3b67f6b57189f3229e8cbff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Leszko?= Date: Mon, 30 Oct 2023 15:10:29 +0100 Subject: [PATCH] Decrease the default O's Ticket EV to 1000000000. The rationale behind is that the ticket EV should be smaller than the expected payment for the transcoding of 1 segment. Otherwise, B needs to always pay in advance. The new default value is 1000000000 wei, which should cover transcoding of 1 s segment, 30 FPS, 1280x720 with price 50ppp. --- cmd/livepeer/starter/starter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/livepeer/starter/starter.go b/cmd/livepeer/starter/starter.go index da6a0db95e..c96b3f8024 100755 --- a/cmd/livepeer/starter/starter.go +++ b/cmd/livepeer/starter/starter.go @@ -193,7 +193,7 @@ func DefaultLivepeerConfig() LivepeerConfig { defaultMaxGasPrice := 0 defaultEthController := "" defaultInitializeRound := false - defaultTicketEV := "1000000000000" + defaultTicketEV := "1000000000" defaultMaxFaceValue := "0" defaultMaxTicketEV := "3000000000000" defaultMaxTotalEV := "20000000000000"