Fix Display trait error in gpu_zk_research - use Debug format for Fp type
Some checks failed
security-scanning / audit (push) Successful in 14s
Rust ZK Components Tests / test-rust-zk (push) Failing after 12s

This commit is contained in:
aitbc1
2026-03-28 20:17:14 +01:00
parent e5be30cd71
commit f0581c78e6

View File

@@ -12,7 +12,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let b = pallas::Base::from(24);
let sum = a + b;
println!("✅ Basic field arithmetic working: {} + {} = {}", a, b, sum);
println!("✅ Basic field arithmetic working: {:?} + {:?} = {:?}", a, b, sum);
println!("\n📊 Research Status:");
println!(" - Environment setup: ✅ Complete");