Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / blockchains / nearcore / 0001-make-near-test-contracts-optional.patch
blob38292349f88e0d7c2d05d83627c47eb4a5ddd1c6
1 From 14635f8a87423f7682e22c4d4bc34551cfe1d10d Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= <joerg@thalheim.io>
3 Date: Thu, 30 Jun 2022 07:33:44 +0000
4 Subject: [PATCH] make near-test-contracts optional
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
9 Signed-off-by: Jörg Thalheim <joerg@thalheim.io>
10 ---
11 Cargo.lock | 1 -
12 tools/state-viewer/Cargo.toml | 2 +-
13 2 files changed, 1 insertion(+), 2 deletions(-)
15 diff --git a/Cargo.lock b/Cargo.lock
16 index e1d8b2a83..3317587f5 100644
17 --- a/Cargo.lock
18 +++ b/Cargo.lock
19 @@ -5253,7 +5253,6 @@ dependencies = [
20 "near-primitives",
21 "near-primitives-core",
22 "near-store",
23 - "near-test-contracts",
24 "nearcore",
25 "node-runtime",
26 "once_cell",
27 diff --git a/tools/state-viewer/Cargo.toml b/tools/state-viewer/Cargo.toml
28 index 02346bf71..51cfc4cb5 100644
29 --- a/tools/state-viewer/Cargo.toml
30 +++ b/tools/state-viewer/Cargo.toml
31 @@ -30,7 +30,7 @@ near-network = { path = "../../chain/network" }
32 near-primitives = { path = "../../core/primitives" }
33 near-primitives-core = { path = "../../core/primitives-core" }
34 near-store = { path = "../../core/store" }
35 -near-test-contracts = { path = "../../runtime/near-test-contracts" }
36 +#near-test-contracts = { path = "../../runtime/near-test-contracts" }
37 nearcore = { path = "../../nearcore" }
38 node-runtime = { path = "../../runtime/runtime" }
40 --
41 2.36.1