We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0acd2d commit a7856efCopy full SHA for a7856ef
rust/rbac-registration/src/registration/cardano/mod.rs
@@ -85,7 +85,7 @@ impl RegistrationChain {
85
/// Create a new instance of registration chain.
86
/// The first new value should be the chain root.
87
#[must_use]
88
- fn new_stateless(cip509: &Cip509) -> Option<Self> {
+ pub fn new_stateless(cip509: &Cip509) -> Option<Self> {
89
let inner = RegistrationChainInner::new(cip509)?;
90
91
Some(Self {
@@ -138,7 +138,7 @@ impl RegistrationChain {
138
/// # Arguments
139
/// - `cip509` - The CIP509.
140
141
- fn update_stateless(
+ pub fn update_stateless(
142
&self,
143
cip509: &Cip509,
144
) -> Option<Self> {
0 commit comments