Skip to content

Commit

Permalink
fix: correct endian-ness of gates response
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench committed Sep 5, 2023
1 parent b7ff69b commit 5aa6ce8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ pub(crate) struct GatesCommand {
pub(crate) fn run(args: GatesCommand) {
assert!(args.bytecode_path.is_file(), "Could not find bytecode file at provided path");

std::io::stdout().write_all(&0u64.to_be_bytes()).unwrap();
std::io::stdout().write_all(&0u64.to_le_bytes()).unwrap();
}

0 comments on commit 5aa6ce8

Please sign in to comment.