Skip to content

Commit 6e1c20c

Browse files
committed
bump scarb and address a new compiler warning
1 parent e872098 commit 6e1c20c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
scarb 2.11.4
1+
scarb 2.12.2

Scarb.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name = "ekubo"
33
version = "0.1.0"
44
description = "An AMM protocol built in Cairo featuring concentrated liquidity"
55
homepage = "https://ekubo.org"
6-
cairo-version = ">=2.11.4"
6+
cairo-version = ">=2.12.2"
77
edition = '2024_07'
88

99
[dependencies]
10-
starknet = ">=2.11.4"
10+
starknet = ">=2.12.2"
1111

1212
[tool.fmt]
1313
sort-module-level-items = true
@@ -17,4 +17,4 @@ allowed-libfuncs-list.name = "audited"
1717
casm = true
1818

1919
[dev-dependencies]
20-
cairo_test = ">=2.11.4"
20+
cairo_test = ">=2.12.2"

src/tests/core_test.cairo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ mod locks {
738738
),
739739
),
740740
) {
741-
ActionResult::SaveBalance => {},
741+
ActionResult::SaveBalance(_) => {},
742742
_ => { assert(false, 'expected save'); },
743743
};
744744
}

0 commit comments

Comments
 (0)