We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc90d64 commit 83b676eCopy full SHA for 83b676e
espresso/cli.go
@@ -178,12 +178,12 @@ func BatchStreamerFromCLIConfig[B Batch](
178
179
l1Client, err := ethclient.Dial(cfg.L1URL)
180
if err != nil {
181
- return nil, fmt.Errorf("failed to dial L1 RPC: %w", err)
+ return nil, fmt.Errorf("failed to dial L1 RPC at %s: %w", cfg.L1URL, err)
182
}
183
184
RollupL1Client, err := ethclient.Dial(cfg.RollupL1URL)
185
186
- return nil, fmt.Errorf("failed to dial Rollup L1 RPC: %w", err)
+ return nil, fmt.Errorf("failed to dial Rollup L1 RPC at %s: %w", cfg.RollupL1URL, err)
187
188
189
espressoClient, err := espressoClient.NewMultipleNodesClient(cfg.QueryServiceURLs)
0 commit comments