Skip to content

Commit 497b88f

Browse files
committed
Merge #218: Convert Types
3b64943 Type: From<Arc<Final>> (Christian Lewe) Pull request description: Convert finalized types to unfinalized ones, for use during unification. ACKs for top commit: apoelstra: ACK 3b64943 Tree-SHA512: 78e553a1375acb898f401bc0693a3b4e03baf23b046145193cacd4619d80a769bdb080a76146d2293c0c443f0f04727c8ca77b0f8bd2c95fe76f4aa0fd4e66d7
2 parents 152749d + 3b64943 commit 497b88f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/types/final_data.rs

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
//!
1313
1414
use crate::dag::{Dag, DagLike, NoSharing};
15+
use crate::types::{Bound, Type};
1516
use crate::Tmr;
1617

1718
use std::sync::Arc;
@@ -226,6 +227,12 @@ impl Final {
226227
}
227228
}
228229

230+
impl From<Arc<Final>> for Type {
231+
fn from(value: Arc<Final>) -> Self {
232+
Type::from(Bound::Complete(value))
233+
}
234+
}
235+
229236
#[cfg(test)]
230237
mod tests {
231238
use super::*;

0 commit comments

Comments
 (0)