Skip to content

Commit

Permalink
Use fixed u2b dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
LogvinovLeon committed Feb 2, 2024
1 parent a34109b commit 1535b86
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 125 deletions.
3 changes: 2 additions & 1 deletion circuits/main/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ authors = ["Arkadiusz Konior, Marek Kirejczyk"]
compiler_version = "0.22.0"

[dependencies]
proof = { tag = "v0.1.0", git = "https://github.com/aragonzkresearch/noir-trie-proofs", directory = "lib" }
u2b = { tag = "v0.3.1", git = "https://github.com/vlayer-xyz/noir-u2b" }
proof = { tag = "v0.1.0", git = "https://github.com/aragonzkresearch/noir-trie-proofs", directory = "lib" }
2 changes: 1 addition & 1 deletion circuits/main/src/get_account.nr
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use dep::proof::{rlp::{RLP_List, decode1_small_lis}, MAX_ACCOUNT_STATE_LENGTH, KEY_LENGTH, TrieProof, byte_value};
use dep::std::println;
use crate::arrays::{assert_sub_array_equals};
use crate::utils::{u64_to_u8, u120_to_u8};
use dep::u2b::{u64_to_u8, u120_to_u8};
use crate::HASH_LENGTH;
use crate::arrays::alter_array;

Expand Down
2 changes: 0 additions & 2 deletions circuits/main/src/main.nr
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ mod get_header;
mod get_header_test;
mod arrays;
mod arrays_test;
mod utils;
mod utils_test;

use dep::proof;
use crate::get_account::{get_account, Account};
Expand Down
20 changes: 0 additions & 20 deletions circuits/main/src/utils.nr

This file was deleted.

101 changes: 0 additions & 101 deletions circuits/main/src/utils_test.nr

This file was deleted.

0 comments on commit 1535b86

Please sign in to comment.