mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-05-21 00:40:01 +00:00
11 lines
256 B
Rust
11 lines
256 B
Rust
use serde::{Deserialize, Serialize};
|
|
use crate::types::{AuthenticationPath, Key};
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
pub enum InputVisibiility {
|
|
// A public account
|
|
Public,
|
|
// A private account
|
|
Private(Option<(Key, AuthenticationPath)>),
|
|
}
|