Skip to content

Commit edc5a1d

Browse files
committed
f reword error message
1 parent 1015543 commit edc5a1d

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
@@ -1575,7 +1575,9 @@ impl<Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref> ChannelMana
15751575
Ok(funding_msg) => {
15761576
(chan, funding_msg)
15771577
},
1578-
Err(_) => { return Err(APIError::ChannelUnavailable { err: "Error deriving keys - either our RNG or our counterparty's RNG is broken".to_owned() }) },
1578+
Err(_) => { return Err(APIError::ChannelUnavailable {
1579+
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()
1580+
}) },
15791581
}
15801582
};
15811583

0 commit comments

Comments
 (0)