Skip to content

Commit 2d50e0a

Browse files
committed
bump bignum
1 parent f81ca2f commit 2d50e0a

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

packages/contracts/noir/common/Nargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ authors = ["Oleh Misarosh <[email protected]>"]
55

66
[dependencies]
77
protocol_types = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v0.86.0", directory = "noir-projects/noir-protocol-circuits/crates/types" }
8-
bignum = { tag = "v0.6.1", git = "https://github.com/noir-lang/noir-bignum/" }
8+
bignum = { tag = "v0.7.3", git = "https://github.com/noir-lang/noir-bignum/" }
99
nodash = { tag = "v0.41.2", git = "https://github.com/olehmisar/nodash/" }

packages/contracts/noir/common/src/erc20_note.nr

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// fails to compile if this file is moved to erc20 crate
22

33
use super::note::Note;
4-
use nodash::ArrayExtensions;
54
use protocol_types::traits::Serialize;
65

76
pub struct Erc20Note {

packages/contracts/noir/common/src/lib.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use bignum::BigNumTrait;
1+
use bignum::BigNum;
22
use protocol_types::hash::poseidon2_hash_with_separator;
33

44
mod context;

0 commit comments

Comments
 (0)