We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ddc7fd commit 0330c9dCopy full SHA for 0330c9d
pythnet/pythnet_sdk/src/wire.rs
@@ -127,11 +127,13 @@ pub mod v1 {
127
mod tests {
128
use crate::wire::{
129
array,
130
+ v1::{
131
+ AccumulatorUpdateData,
132
+ Proof,
133
+ },
134
Deserializer,
135
PrefixedVec,
136
Serializer,
- v1::AccumulatorUpdateData,
- v1::Proof,
137
};
138
139
// Test the arbitrary fixed sized array serialization implementation.
@@ -351,7 +353,7 @@ mod tests {
351
353
use serde::Serialize;
352
354
// Serialize an empty update into a buffer.
355
let empty_update = AccumulatorUpdateData::new(Proof::WormholeMerkle {
- vaa: PrefixedVec::from(vec![]),
356
+ vaa: PrefixedVec::from(vec![]),
357
updates: vec![],
358
});
359
let mut buffer = Vec::new();
0 commit comments