updated evaluator service - added semaphore.Weighted(5) and sync.WaitGroup etc to cap conncurrent requests; also WaitForNotifications() so caller blocks until notifications finish. jsonrpc.go -- finally, bumped rpcRetryBaseMS from 1000 to 2000 - RPC retries at 2s/4s/8s backoff rate
Some checks are pending
check / check (push) Waiting to run

This commit is contained in:
KS Jannette
2026-03-04 23:14:55 -05:00
parent 8f08105246
commit 2fe0e5b8e9
3 changed files with 22 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ import (
const (
rpcTimeoutMS = 30000
rpcMaxRetries = 3
rpcRetryBaseMS = 1000
rpcRetryBaseMS = 2000
)
type JsonRpcEthereum struct {