Skip to content

Commit

Permalink
Bump go version in go.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
dimartiro committed Oct 14, 2024
1 parent faba1bf commit 683abc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ require (
lukechampine.com/blake3 v1.3.0 // indirect
)

go 1.22
go 1.23

toolchain go1.23.2

replace github.com/tetratelabs/wazero => github.com/ChainSafe/wazero v0.0.0-20240319130522-78b21a59bd5f
Expand Down
2 changes: 1 addition & 1 deletion pkg/trie/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (n *Node) String() string {

// StringNode returns a gotree compatible node for String methods.
func (n *Node) StringNode() (stringNode *gotree.Node) {
stringNode = gotree.New(n.Kind().String()) //nolint:govet
stringNode = gotree.New(n.Kind().String())
stringNode.Appendf("Generation: %d", n.Generation)
stringNode.Appendf("Dirty: %t", n.Dirty)
stringNode.Appendf("Key: " + bytesToString(n.PartialKey)) //nolint:govet
Expand Down

0 comments on commit 683abc3

Please sign in to comment.