Update error message

Message is paths must be >= 2 but condition is checking for < 3
pull/1931/head
Pebu 2 years ago committed by GitHub
parent f2d7d5eabf
commit 9db192079b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -425,7 +425,7 @@ namespace llarp
},
[this](int arg) {
if (arg < 3 or arg > 8)
throw std::invalid_argument("[endpoint]:paths must be >= 2 and <= 8");
throw std::invalid_argument("[endpoint]:paths must be >= 3 and <= 8");
m_Paths = arg;
});

Loading…
Cancel
Save