Skip to content

Commit 1358066

Browse files
committed
f reword error message
1 parent 42a79b1 commit 1358066

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1574,7 +1574,9 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
15741574
Ok(funding_msg) => {
15751575
(chan, funding_msg)
15761576
},
1577-
Err(_) => { return Err(APIError::ChannelUnavailable { err: "Error deriving keys - either our RNG or our counterparty's RNG is broken".to_owned() }) },
1577+
Err(_) => { return Err(APIError::ChannelUnavailable {
1578+
err: "Error deriving keys or signing initial commitment transactions - either our RNG or our counterparty's RNG is broken or the Signer refused to sign".to_owned()
1579+
}) },
15781580
}
15791581
};
15801582

0 commit comments

Comments
 (0)