redgold-schema 0.1.48

Decentralized Portfolio Contracts & Data Lake
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::structs::ControlRequest;

// Can we remove all references to this and just replace with Default?
impl ControlRequest {
    pub fn empty() -> Self {
        Self {
            control_multiparty_keygen_request: None,
            control_multiparty_signing_request: None,
        }
    }
}