From 9932e6194e9687c45f78a4f8c9f9080159330511 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 22 Feb 2024 03:44:27 -0500 Subject: [PATCH] fix: update error message --- protocols/s5/s5.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/s5/s5.go b/protocols/s5/s5.go index 110433c..4079d67 100644 --- a/protocols/s5/s5.go +++ b/protocols/s5/s5.go @@ -128,7 +128,7 @@ func configureS5Protocol(proto *S5Protocol) (*s5config.NodeConfig, error) { } if cfg.DbPath == "" { - proto.logger.Fatal("protocol.s5.dbPath is required") + proto.logger.Fatal("protocol.s5.db_path is required") } _, p, err := ed25519.GenerateKey(nil)