mirror of
https://github.com/aljazceru/cdk.git
synced 2026-01-06 14:35:31 +01:00
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:
@@ -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),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user