diff --git a/cmd/devnettest/main.go b/cmd/devnettest/main.go
index 0bd8c88d94dcb20f75cc1bffbe8815a7ade4e967..6cad3a97b535039b7753bd6e3daa37a5b0442122 100644
--- a/cmd/devnettest/main.go
+++ b/cmd/devnettest/main.go
@@ -8,13 +8,13 @@ import (
 
 func main() {
 	var (
-		to string
-		value uint64
-		blockNum string
-		getBalance bool
-		sendTx bool
+		to            string
+		value         uint64
+		blockNum      string
+		getBalance    bool
+		sendTx        bool
 		txPoolContent bool
-		clearDev bool
+		clearDev      bool
 	)
 
 	flag.StringVar(&to, "to", "", "String Address to send to")
diff --git a/cmd/devnettest/requests/utils.go b/cmd/devnettest/requests/utils.go
index 4d892569c8ce0b4b11b936353917990d939c21ab..46c5054578946817e3b7ee7f2c1dcfce8372cc53 100644
--- a/cmd/devnettest/requests/utils.go
+++ b/cmd/devnettest/requests/utils.go
@@ -26,4 +26,4 @@ func post(client *http.Client, url, request string, response interface{}) error
 	err = decoder.Decode(response)
 	log.Info("Got in", "time", time.Since(start).Seconds())
 	return err
-}
\ No newline at end of file
+}
diff --git a/cmd/devnettest/services/utility.go b/cmd/devnettest/services/utility.go
index 9603d7d09ebfd7990d2e56bd253aae84ec887b16..0e0a821756c92d515185298fb2cb1dbf91ef5180 100644
--- a/cmd/devnettest/services/utility.go
+++ b/cmd/devnettest/services/utility.go
@@ -65,4 +65,4 @@ func ParseRequests(getBalance *bool, sendTx *bool, txpoolContent *bool, clearDev
 
 func clearDevDB() {
 	fmt.Printf("Clearing ~/dev\n")
-}
\ No newline at end of file
+}
diff --git a/rules.go b/rules.go
index a56a624a9227d635701d0120540ba6276dfdaa11..4869987d9e12b850d50214e5e4dcf7f5003740fc 100644
--- a/rules.go
+++ b/rules.go
@@ -1,3 +1,4 @@
+//go:build gorules
 // +build gorules
 
 package gorules
diff --git a/tools.go b/tools.go
index 0eeaaecf4223a271b92a4829726f5f1d1984e7eb..a28c0568b68075953230729e69ac903b193bf4a1 100644
--- a/tools.go
+++ b/tools.go
@@ -1,3 +1,4 @@
+//go:build tools
 // +build tools
 
 package tools