From 6862a0c1ce3fedf6565edf2710345da9aa59d4a7 Mon Sep 17 00:00:00 2001 From: Thomas Marchand Date: Fri, 3 Nov 2023 16:05:43 +0700 Subject: [PATCH] fix: dependencies --- Scarb.toml | 4 ++-- src/tests/naming/common.cairo | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Scarb.toml b/Scarb.toml index 2c9c7c9..13d9c20 100644 --- a/Scarb.toml +++ b/Scarb.toml @@ -7,8 +7,8 @@ version = "0.1.0" [dependencies] starknet = "2.3.1" openzeppelin = { git = "https://github.com/OpenZeppelin/cairo-contracts.git", tag = "v0.8.0-beta.0" } -storage_read = { git = "https://github.com/starknet-id/storage_read_component", branch = "master" } -identity = { git = "https://github.com/starknet-id/identity.git", branch = "master" } +identity = { git = "https://github.com/starknet-id/identity.git", rev = "2e8fecab0d9a971710e8efb21abc25fb7825ee09" } +storage_read = { git = "https://github.com/starknet-id/storage_read_component", rev = "c6c69e15d34abfc39ac51dc21b96724e2e19ff31" } [[target.starknet-contract]] # Enable Sierra codegen. diff --git a/src/tests/naming/common.cairo b/src/tests/naming/common.cairo index 1e42475..5c55de0 100644 --- a/src/tests/naming/common.cairo +++ b/src/tests/naming/common.cairo @@ -30,7 +30,7 @@ fn deploy() -> (IERC20CamelDispatcher, IPricingDispatcher, IIdentityDispatcher, let pricing = utils::deploy(Pricing::TEST_CLASS_HASH, array![eth.into()]); // identity - let identity = utils::deploy(Identity::TEST_CLASS_HASH, ArrayTrait::::new()); + let identity = utils::deploy(Identity::TEST_CLASS_HASH, array![0]); // naming let admin = 0x123;