From e555f42cee8f141575d9f28feec812e9225d2d6d Mon Sep 17 00:00:00 2001 From: findfluctuate Date: Fri, 12 Dec 2025 19:27:57 +0800 Subject: [PATCH] chore: execute goimports to format the code Signed-off-by: findfluctuate --- util/base58/doc.go | 4 ++-- util/base58/genalphabet.go | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/util/base58/doc.go b/util/base58/doc.go index 9a2c0e6e3..d657f050f 100644 --- a/util/base58/doc.go +++ b/util/base58/doc.go @@ -6,7 +6,7 @@ Package base58 provides an API for working with modified base58 and Base58Check encodings. -Modified Base58 Encoding +# Modified Base58 Encoding Standard base58 encoding is similar to standard base64 encoding except, as the name implies, it uses a 58 character alphabet which results in an alphanumeric @@ -17,7 +17,7 @@ The modified base58 alphabet used by Bitcoin, and hence this package, omits the 0, O, I, and l characters that look the same in many fonts and are therefore hard to humans to distinguish. -Base58Check Encoding Scheme +# Base58Check Encoding Scheme The Base58Check encoding scheme is primarily used for Bitcoin addresses at the time of this writing, however it can be used to generically encode arbitrary diff --git a/util/base58/genalphabet.go b/util/base58/genalphabet.go index 010cbee39..959f34d4e 100644 --- a/util/base58/genalphabet.go +++ b/util/base58/genalphabet.go @@ -2,7 +2,8 @@ // Use of this source code is governed by an ISC // license that can be found in the LICENSE file. -//+build ignore +//go:build ignore +// +build ignore package main