ci: remove deprecated attribute

versioning is not constant at the moment
so the attribute just causes ci errors
Will add back once more stable
This commit is contained in:
thesimplekid
2023-09-11 20:45:39 +01:00
parent f73b724c4f
commit c3437beb6f
3 changed files with 22 additions and 37 deletions

View File

@@ -21,11 +21,7 @@ impl SplitRequest {
let outputs = outputs.into_iter().map(|o| o.as_ref().into()).collect();
Self {
inner: SplitRequestSdk {
amount: None,
proofs,
outputs,
},
inner: SplitRequestSdk::new(proofs, outputs),
}
}
@@ -64,11 +60,7 @@ impl SplitResponse {
pub fn new(promises: Vec<Arc<BlindedSignature>>) -> Self {
let promises = promises.into_iter().map(|p| p.as_ref().into()).collect();
Self {
inner: SplitResponseSdk {
fst: None,
snd: None,
promises: Some(promises),
},
inner: SplitResponseSdk::new(promises),
}
}