From f153119de7849e9f1a7221cc169ac15906291ac6 Mon Sep 17 00:00:00 2001 From: Asif Nishat Date: Thu, 8 Feb 2024 04:32:43 +0530 Subject: [PATCH 1/2] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 13ae332..4dc3db7 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ and below is a proof visualisation with the value being proved in red, the inter package main import ( - merkletree "github.com/wealdtech/go-merkletree" + merkletree "github.com/wealdtech/go-merkletree/v2" ) // Example using the Merkle tree to generate and verify proofs. From 6a94b48b2baed818ddd3aa86c9162a662a3b40d4 Mon Sep 17 00:00:00 2001 From: Asif Nishat Date: Thu, 8 Feb 2024 04:34:28 +0530 Subject: [PATCH 2/2] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4dc3db7..e9dea96 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Go implementation of a Merkle tree. `go-merkletree` is a standard Go module which can be installed with: ```sh -go get github.com/wealdtech/go-merkletree +go get github.com/wealdtech/go-merkletree/v2 ``` ## Usage