From 45e325acce66aeb0ac3ae53ab47467c5b62191d8 Mon Sep 17 00:00:00 2001 From: Lucas Cullen Date: Tue, 14 May 2024 14:04:46 +1000 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b8a155..e94dafd 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Golang 1.18 or higher > Note: this project is under heavy development! Things may change rapidly! -## Instalation +## Installation ``` make build From 774a6b0f51821b7e9f1e5d78ad602f77a1ae7622 Mon Sep 17 00:00:00 2001 From: Lucas Cullen Date: Sat, 18 May 2024 17:03:49 +1000 Subject: [PATCH 2/2] chore: Update go.mod to use go 1.22 --- TODO | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TODO b/TODO index be09f02..0697b5c 100644 --- a/TODO +++ b/TODO @@ -2,4 +2,4 @@ - remove random (tx, block, etc) from tests and use the util/random functions and fix potential circular dependencies - double check what transactions to use from txpool before creating a new block - Fix error logging in blockhain.go (some logs not passing through) -- Taks block rewards +- Take block rewards diff --git a/go.mod b/go.mod index 1219df3..ae81ed6 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/anthdm/projectx -go 1.18 +go 1.22 require ( github.com/davecgh/go-spew v1.1.1 // indirect