Skip to content

Commit

Permalink
forgot to cargo fmt there
Browse files Browse the repository at this point in the history
  • Loading branch information
tthale committed Nov 28, 2023
1 parent 60813dd commit 5a798cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plonky2/src/plonk/circuit_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ impl<F: RichField + Extendable<D>, const D: usize> CircuitBuilder<F, D> {
for input in &self.public_inputs {
match input {
Target::VirtualTarget { index } => println!("target: VirtualTarget: <{index}>"),

Check failure on line 1187 in plonky2/src/plonk/circuit_builder.rs

View workflow job for this annotation

GitHub Actions / wasm32 compatibility

cannot find macro `println` in this scope
Target::Wire(__) => println!("target: \"Wire\""),
Target::Wire(_) => println!("target: \"Wire\""),

Check failure on line 1188 in plonky2/src/plonk/circuit_builder.rs

View workflow job for this annotation

GitHub Actions / wasm32 compatibility

cannot find macro `println` in this scope
}
}

Expand Down

0 comments on commit 5a798cf

Please sign in to comment.