diff options
Diffstat (limited to 'zkvms')
| -rw-r--r-- | zkvms/zkwasm/host/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zkvms/zkwasm/host/src/main.rs b/zkvms/zkwasm/host/src/main.rs index d04938a..288c3a5 100644 --- a/zkvms/zkwasm/host/src/main.rs +++ b/zkvms/zkwasm/host/src/main.rs @@ -28,7 +28,7 @@ macro_rules! build_input { } let bytes = all .into_iter() - .map(|x| x.to_be_bytes()) + .map(|x: u64| x.to_be_bytes()) .flatten() .collect::<Vec<u8>>(); std::fs::write($path, bytes); |
