Skip to content

Commit

Permalink
derive Copy for StarkDomains for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
neotheprogramist committed Jan 10, 2024
1 parent 3343630 commit d471569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/domains.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use cairo_verifier::{
};

// Information about the domains that are used in the stark proof.
#[derive(Drop)]
#[derive(Drop, Copy)]
struct StarkDomains {
// Log2 of the evaluation domain size.
log_eval_domain_size: felt252,
Expand Down

0 comments on commit d471569

Please sign in to comment.