update init to remove redundant pointers

This commit is contained in:
Jaremy Creechley 2023-12-22 19:23:04 -07:00
parent d53903d475
commit 76e34b4b5e
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -207,7 +207,7 @@ pub unsafe extern "C" fn free_proof_ctx(ctx: *mut ProofCtx) {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use ark_std::rand::{distributions::Alphanumeric, rngs::{ThreadRng, StdRng}, Rng, SeedableRng}; use ark_std::rand::{distributions::Alphanumeric, rngs::StdRng, Rng, SeedableRng};
use rs_poseidon::poseidon::hash; use rs_poseidon::poseidon::hash;
use ruint::aliases::U256; use ruint::aliases::U256;
@ -224,7 +224,7 @@ mod tests {
#[test] #[test]
fn test_mpack() { fn test_mpack() {
let mut buf = Vec::new(); let mut buf = Vec::new();
let val = Value::from("le message"); let _val = Value::from("le message");
// example of serializing the random chunk data // example of serializing the random chunk data
// we build them up in mpack Value enums // we build them up in mpack Value enums
@ -250,7 +250,7 @@ mod tests {
}) })
.collect::<Vec<Value>>(); .collect::<Vec<Value>>();
let chunks = Value::Array(chunks); let chunks = Value::Array(chunks);
let mut data = Value::Map(vec![(Value::String("chunks".into()), chunks.clone() )]); let data = Value::Map(vec![(Value::String("chunks".into()), chunks.clone() )]);
println!("Debug: chunks: {:?}", chunks[0][0]); println!("Debug: chunks: {:?}", chunks[0][0]);
@ -301,7 +301,7 @@ mod tests {
#[test] #[test]
fn test_storer_ffi_mpack() { fn test_storer_ffi_mpack() {
let mut buf = Vec::new(); let mut buf = Vec::new();
let val = Value::from("le message"); let _val = Value::from("le message");
// example of serializing the random chunk data // example of serializing the random chunk data
// we build them up in mpack Value enums // we build them up in mpack Value enums
@ -360,7 +360,7 @@ mod tests {
let root_mpk = u256_to_mpack(&root); let root_mpk = u256_to_mpack(&root);
// Serialize the value types to an array pointer // Serialize the value types to an array pointer
let mut mpk_data = Value::Map(vec![ let mpk_data = Value::Map(vec![
(Value::String("chunks".into()), chunks.clone() ), (Value::String("chunks".into()), chunks.clone() ),
(Value::String("siblings".into()), siblings_mpk.clone() ), (Value::String("siblings".into()), siblings_mpk.clone() ),
(Value::String("hashes".into()), hashes_mpk.clone() ), (Value::String("hashes".into()), hashes_mpk.clone() ),