Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sample.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ fn cli() -> Command {
.subcommand(
Command::new("verifyinclusionproof")
.help_template(APPLET_TEMPLATE)
.about("Verify inclusion proof"),
.about("Verifies whether the most recent Merkle root from Mainstay includes the last commitment sent (the last event generated by Civkit) or not"),
)
}

Expand Down Expand Up @@ -471,7 +471,7 @@ async fn respond(
}
}
Some(("verifyinclusionproof", matches)) => {
println!("verifyinclusionproof");
println!("verifyinclusionproof: Verifies whether the most recent Merkle root from Mainstay includes the last commitment sent (the last event generated by Civkit) or not");

let request = tonic::Request::new(civkitservice::VerifyInclusionProofRequest {});

Expand Down