mx25519 linking - Added to STATIC_LIBS, Windows format strings, macOS sprintf, remove unused variable for mac and bsd compiler happiness, ADDRESS_LENGTH fix

This commit is contained in:
Matt Hess
2025-12-17 04:06:55 +00:00
parent 27dfd4788b
commit b4c482b6ef
4 changed files with 13 additions and 16 deletions
+2 -2
View File
@@ -393,13 +393,13 @@ bool Params::valid() const
}
if (m_mainWallet.is_subaddress()) {
LOGERR(1, "Wallet address must be a main address (starting with 4...). Try \"p2pool --help\".");
LOGERR(1, "Wallet address must be a main address (starting with SC1). Try \"p2pool --help\".");
return false;
}
if (m_subaddress.valid()) {
if (!m_subaddress.is_subaddress()) {
LOGERR(1, "Subaddress must start with 8... Try \"p2pool --help\".");
LOGERR(1, "Subaddress must start with SC1s. Try \"p2pool --help\".");
return false;
}
if (m_subaddress.type() != m_mainWallet.type()) {