Open jkczyz opened 2 weeks ago
Fixed a couple rustfmt
issues in dual_funding_tests.rs
. Also, removed a ton of unnecessary drain
s from channelmanager.rs
for good measure since I was looking at related code and noticed a Vec
wasn't being used, which I removed in another commit, too.
Attention: Patch coverage is 66.91176%
with 45 lines
in your changes missing coverage. Please review.
Project coverage is 89.23%. Comparing base (
0c31021
) to head (6db89d7
).
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
🚨 Try these New Features:
When handling a
tx_complete
message, allow signers to return an error indicating that the signer has not yet complete. This will leave theChannelPhase
in an unfunded variant until the signer becomes unblocked. The user callsChannelManager::signer_unblocked
to indicate that signing is complete, which will attempt to finish handling thetx_complete
message again.Based on #3137. Fixes #3404.