Update error message

Message is paths must be >= 2 but condition is checking for < 3
This commit is contained in:
Pebu 2022-06-06 10:00:20 -04:00 committed by GitHub
parent f2d7d5eabf
commit 9db192079b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
});