diff --git a/Cargo.lock b/Cargo.lock index 2ec792c..2c2323d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4218,6 +4218,7 @@ dependencies = [ "serde", "serde_json", "sha2", + "storage", "utxo", ] diff --git a/sc_core/Cargo.toml b/sc_core/Cargo.toml index a816757..60f287c 100644 --- a/sc_core/Cargo.toml +++ b/sc_core/Cargo.toml @@ -30,6 +30,9 @@ path = "../utxo" [dependencies.common] path = "../common" +[dependencies.storage] +path = "../storage" + [dependencies.secp256k1-zkp] workspace = true features = ["std", "rand-std", "rand", "serde", "global-context"]