miden-tx-batch-prover 0.8.0

Miden rollup transaction batch executor and prover
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use miden_objects::transaction::TransactionId;
use miden_tx::TransactionVerifierError;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum ProvenBatchError {
    #[error("failed to verify transaction {transaction_id} in transaction batch")]
    TransactionVerificationFailed {
        transaction_id: TransactionId,
        source: TransactionVerifierError,
    },
}