mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-05-17 21:49:35 +00:00
fix(privacy_preserving_circuit): satisfy CI lints and refresh artifact for #454
Refs: #454
This commit is contained in:
parent
bda50f1d2f
commit
01eb4a58b8
Binary file not shown.
@ -402,7 +402,11 @@ impl ExecutionState {
|
|||||||
.expect("Account from pre states should exist in state diff");
|
.expect("Account from pre states should exist in state diff");
|
||||||
(pre, post)
|
(pre, post)
|
||||||
});
|
});
|
||||||
(block_validity_window, timestamp_validity_window, states_iter)
|
(
|
||||||
|
block_validity_window,
|
||||||
|
timestamp_validity_window,
|
||||||
|
states_iter,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -14,7 +14,7 @@ use super::ExecutionState;
|
|||||||
// truth, do not redefine in another module.
|
// truth, do not redefine in another module.
|
||||||
const PRIVATE_PDA_FIXED_IDENTIFIER: Identifier = u128::MAX;
|
const PRIVATE_PDA_FIXED_IDENTIFIER: Identifier = u128::MAX;
|
||||||
|
|
||||||
pub(super) fn compute_circuit_output(
|
pub fn compute_circuit_output(
|
||||||
execution_state: ExecutionState,
|
execution_state: ExecutionState,
|
||||||
account_identities: &[InputAccountIdentity],
|
account_identities: &[InputAccountIdentity],
|
||||||
) -> PrivacyPreservingCircuitOutput {
|
) -> PrivacyPreservingCircuitOutput {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user