From 021a8d1b4bb2fc95bab120687b4ce8610a00fec5 Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Sat, 26 Mar 2022 19:29:26 -0600 Subject: [PATCH] Improve error message for when a UA is only usable after a future NU. Co-authored-by: Daira Hopwood --- src/wallet/rpcwallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index f41c70890..eb5efe77a 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -4915,7 +4915,7 @@ UniValue z_sendmany(const UniValue& params, bool fHelp) } else { throw JSONRPCError( RPC_INVALID_PARAMETER, - "Unified address contained no recognized receiver types."); + "Unified address contained only receiver types that are unrecognized or for which the required consensus feature is not yet active."); } }