From 5128b84e1deb0ddc504480d6a3474294e70f2dd0 Mon Sep 17 00:00:00 2001 From: Ekaterina Pavlova Date: Mon, 19 Feb 2024 19:12:21 +0300 Subject: [PATCH] *: update go.mod According to https://go.dev/doc/modules/gomod-ref go version should be placed before `require` section. Signed-off-by: Ekaterina Pavlova --- go.mod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 10d26c595..9ea3fa522 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,7 @@ module github.com/nspcc-dev/neo-go +go 1.19 + require ( github.com/chzyer/readline v1.5.1 github.com/consensys/gnark v0.9.1 @@ -76,5 +78,3 @@ require ( google.golang.org/protobuf v1.31.0 // indirect rsc.io/tmplfunc v0.0.3 // indirect ) - -go 1.19