Skip to content

Commit 29dd9ea

Browse files
committed
refactor: Remove Error::DisconnectCommitTime
This error was thrown when a disconnected branch is populated during construction of a CommitNode. The error was intended to inform users that the disconnected branches are thrown away, but this information is not useful. It is a general fact that CommitNode omits disconnected branches. We don't need to throw a runtime error in case a disconnected branch exists. Removing Error::DisconnectedCommitTime eliminates a useless runtime error path.
1 parent cdf28e0 commit 29dd9ea

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

src/lib.rs

-6
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ pub fn leaf_version() -> elements::taproot::LeafVersion {
7878
pub enum Error {
7979
/// Decoder error
8080
Decode(decode::Error),
81-
/// A disconnect node was populated at commitment time
82-
DisconnectCommitTime,
8381
/// A disconnect node was *not* populated at redeem time
8482
DisconnectRedeemTime,
8583
/// Type-checking error
@@ -99,9 +97,6 @@ impl fmt::Display for Error {
9997
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
10098
match self {
10199
Error::Decode(ref e) => fmt::Display::fmt(e, f),
102-
Error::DisconnectCommitTime => {
103-
f.write_str("disconnect node had two children (commit time); must have one")
104-
}
105100
Error::DisconnectRedeemTime => {
106101
f.write_str("disconnect node had one child (redeem time); must have two")
107102
}
@@ -119,7 +114,6 @@ impl std::error::Error for Error {
119114
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
120115
match *self {
121116
Error::Decode(ref e) => Some(e),
122-
Error::DisconnectCommitTime => None,
123117
Error::DisconnectRedeemTime => None,
124118
Error::Type(ref e) => Some(e),
125119
Error::Execution(ref e) => Some(e),

src/node/construct.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,10 @@ impl<J: Jet> ConstructNode<J> {
9898
fn convert_disconnect(
9999
&mut self,
100100
_: &PostOrderIterItem<&ConstructNode<J>>,
101-
maybe_converted: Option<&Arc<CommitNode<J>>>,
101+
_: Option<&Arc<CommitNode<J>>>,
102102
_: &Option<Arc<ConstructNode<J>>>,
103103
) -> Result<NoDisconnect, Self::Error> {
104-
if maybe_converted.is_some() {
105-
Err(crate::Error::DisconnectCommitTime)
106-
} else {
107-
Ok(NoDisconnect)
108-
}
104+
Ok(NoDisconnect)
109105
}
110106

111107
fn convert_data(

0 commit comments

Comments
 (0)