From 72fc42bc3834eeb03ee699e74096814aca553d4b Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Fri, 3 Feb 2023 18:32:05 +0100 Subject: [PATCH] descriptors: mention origin requirement in invalid key error --- src/descriptors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/descriptors.rs b/src/descriptors.rs index fa038c0d..c7df1566 100644 --- a/src/descriptors.rs +++ b/src/descriptors.rs @@ -58,7 +58,7 @@ impl std::fmt::Display for LianaDescError { Self::InvalidKey(key) => { write!( f, - "Invalid key '{}'. Need a wildcard ('ranged') xpub with a multipath for (and only for) deriving change addresses. That is, an xpub of the form 'xpub.../<0;1>/*'.", + "Invalid key '{}'. Need a wildcard ('ranged') xpub with an origin and a multipath for (and only for) deriving change addresses. That is, an xpub of the form '[aaff0099]xpub.../<0;1>/*'.", key ) }