From 9a39cf1c7e817f223e7dfc468e778445d2f36068 Mon Sep 17 00:00:00 2001 From: Siddarth Kumar Date: Mon, 8 Apr 2024 23:22:57 +0530 Subject: [PATCH] bump go to 1.20 --- go.mod | 2 +- nix/shell.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 4336cf99503..1b22fdbefc8 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/status-im/status-go -go 1.19 +go 1.20 replace github.com/ethereum/go-ethereum v1.10.26 => github.com/status-im/go-ethereum v1.10.25-status.13 diff --git a/nix/shell.nix b/nix/shell.nix index 5f3593e8c59..992cf1bbb25 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -20,7 +20,7 @@ in pkgs.mkShell { buildInputs = with pkgs; [ git jq which - go_1_19 golangci-lint go-junit-report gopls go-bindata gomobileMod + go_1_20 golangci-lint go-junit-report gopls go-bindata gomobileMod mockgen protobuf3_20 protoc-gen-go gotestsum go-modvendor openjdk ] ++ lib.optionals (stdenv.isDarwin) [ xcodeWrapper ];