Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
neotheprogramist committed Jan 12, 2024
1 parent 2add94d commit 8722a5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
6 changes: 1 addition & 5 deletions src/stark.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,7 @@ impl StarkProofImpl of StarkProofTrait {
let mut channel = ChannelImpl::new(digest);

stark_commit::stark_commit(
ref channel,
self.public_input,
self.unsent_commitment,
self.config,
@stark_domains,
ref channel, self.public_input, self.unsent_commitment, self.config, @stark_domains,
);
}
}
Expand Down
3 changes: 1 addition & 2 deletions src/stark/stark_commit.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ use cairo_verifier::channel::channel::ChannelTrait;
use cairo_verifier::{
air::{
constants::{CONSTRAINT_DEGREE, N_CONSTRAINTS, N_INTERACTION_ELEMENTS, MASK_SIZE},
public_input::PublicInput,
traces::traces_commit,
public_input::PublicInput, traces::traces_commit,
},
channel::channel::Channel, common::powers_array::powers_array, domains::StarkDomains,
fri::fri::fri_commit, stark::{StarkUnsentCommitment, StarkConfig, StarkCommitment},
Expand Down

0 comments on commit 8722a5b

Please sign in to comment.