From 6971eb81dfc24dddfa8e9a458640b824fc1aaca3 Mon Sep 17 00:00:00 2001 From: wojo Date: Wed, 6 Nov 2024 13:52:30 +0100 Subject: [PATCH] Fix disable l1 error log --- node/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/node.go b/node/node.go index c048b5302b..283b3db4e2 100644 --- a/node/node.go +++ b/node/node.go @@ -277,7 +277,7 @@ func New(cfg *Config, version string) (*Node, error) { //nolint:gocyclo,funlen // Due to mutually exclusive flag we can do the following. if n.cfg.EthNode == "" { //nolint:lll - return nil, fmt.Errorf("ethereum node address not found; will not verify against L1. Use --Let rename it disable-l1-verification flag if L1 verification is not required") + return nil, fmt.Errorf("ethereum node address not found; Use --disable-l1-verification flag if L1 verification is not required") } var l1Client *l1.Client