Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion ledger/src/proofs/block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ use crate::{
transaction_logic::protocol_state::{EpochLedger, ProtocolStateView},
},
staged_ledger::hash::StagedLedgerHash,
zkapps::intefaces::{SignedAmountBranchParam, SignedAmountInterface},
zkapps::interfaces::{SignedAmountBranchParam, SignedAmountInterface},
ToInputs,
};

Expand Down
2 changes: 1 addition & 1 deletion ledger/src/proofs/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2268,7 +2268,7 @@ pub mod transaction_snark {
transaction_logic::{checked_cons_signed_command_payload, Coinbase},
},
sparse_ledger::SparseLedger,
zkapps::intefaces::{SignedAmountBranchParam, SignedAmountInterface},
zkapps::interfaces::{SignedAmountBranchParam, SignedAmountInterface},
AccountId, PermissionTo, PermsConst, Timing, TimingAsRecordChecked, ToInputs,
};
use ::poseidon::hash::{params::MINA_PROTO_STATE_BODY, Inputs, LazyParam};
Expand Down
2 changes: 1 addition & 1 deletion ledger/src/scan_state/transaction_logic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5135,7 +5135,7 @@ pub mod local_state {
numbers::nat::CheckedNat,
to_field_elements::ToFieldElements,
},
zkapps::intefaces::{
zkapps::interfaces::{
CallStackInterface, IndexInterface, SignedAmountInterface, StackFrameInterface,
},
ToInputs,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion ledger/src/zkapps/mod.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub mod checks;
pub mod intefaces;
pub mod interfaces;
pub mod non_snark;
pub mod snark;
pub mod zkapp_logic;
2 changes: 1 addition & 1 deletion ledger/src/zkapps/non_snark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ use crate::{

use super::{
checks::NonSnarkOps,
intefaces::{
interfaces::{
AccountIdInterface, AccountInterface, AccountUpdateInterface, ActionsInterface,
AmountInterface, BalanceInterface, BoolInterface, BranchEvaluation, BranchInterface,
BranchParam, CallForestInterface, CallStackInterface, ControllerInterface,
Expand Down
2 changes: 1 addition & 1 deletion ledger/src/zkapps/snark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ use crate::{

use super::{
checks::{InSnarkOps, ZkappCheck},
intefaces::{
interfaces::{
AccountIdInterface, AccountInterface, AccountUpdateInterface, ActionsInterface,
AmountInterface, BalanceInterface, BoolInterface, BranchEvaluation, BranchInterface,
BranchParam, CallForestInterface, CallStackInterface, ControllerInterface,
Expand Down
2 changes: 1 addition & 1 deletion ledger/src/zkapps/zkapp_logic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::{
TimingValidation, TransactionFailure,
},
},
zkapps::intefaces::*,
zkapps::interfaces::*,
AuthRequired, MyCow, Permissions, SetVerificationKey, TokenId, VerificationKeyWire,
};

Expand Down
Loading