about summary refs log tree commit diff
path: root/pkgs/applications/blockchains/nearcore
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-12-14 04:12:49 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-12-14 04:12:49 +0000
commit9be43b7e831d9a3d9c396f77d63a94cd1db7f819 (patch)
tree9647911a638154aace457ff0853544c8eec062cc /pkgs/applications/blockchains/nearcore
parente156da2bddd43db457cc300b704ceab1f9362658 (diff)
nearcore: 1.29.3 -> 1.30.0
Diffstat (limited to 'pkgs/applications/blockchains/nearcore')
-rw-r--r--pkgs/applications/blockchains/nearcore/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/blockchains/nearcore/default.nix b/pkgs/applications/blockchains/nearcore/default.nix
index a929406cee929..4931ec51078c0 100644
--- a/pkgs/applications/blockchains/nearcore/default.nix
+++ b/pkgs/applications/blockchains/nearcore/default.nix
@@ -4,7 +4,7 @@
 }:
 rustPlatform.buildRustPackage rec {
   pname = "nearcore";
-  version = "1.29.3";
+  version = "1.30.0";
 
   # https://github.com/near/nearcore/tags
   src = fetchFromGitHub {
@@ -13,10 +13,10 @@ rustPlatform.buildRustPackage rec {
     # there is also a branch for this version number, so we need to be explicit
     rev = "refs/tags/${version}";
 
-    sha256 = "sha256-Qbpp+ITWVFbigWLdSDHAo5JhHejEN2FknRIjcpcS2wY=";
+    sha256 = "sha256-Co8896RojUf/R8ZiRn7zSO1AWH7x5rYom6TbGohH1KM=";
   };
 
-  cargoSha256 = "sha256-GSgzJNpVGxbvGF6AtFQxGyev/9c8Roav1HBz0SCQyvw=";
+  cargoSha256 = "sha256-M+vhLBXsd+R97Sh5s6jFzon/47XohJeQKh//9QP6PXw=";
   cargoPatches = [ ./0001-make-near-test-contracts-optional.patch ];
 
   postPatch = ''