From 5ce13e8ba7696302af8e365301d9a8eb07d101c5 Mon Sep 17 00:00:00 2001 From: Lane Rettig Date: Fri, 14 Jul 2023 06:57:46 -0400 Subject: [PATCH] linter --- cmd/wallet.go | 4 ++-- wallet/wallet_test.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/wallet.go b/cmd/wallet.go index 7b78b03..795e146 100644 --- a/cmd/wallet.go +++ b/cmd/wallet.go @@ -12,9 +12,9 @@ import ( "github.com/btcsuite/btcutil/base58" "github.com/hashicorp/go-secure-stdlib/password" "github.com/jedib0t/go-pretty/v6/table" + "github.com/spacemeshos/go-spacemesh/common/types" "github.com/spf13/cobra" - "github.com/spacemeshos/go-spacemesh/common/types" "github.com/spacemeshos/smcli/common" "github.com/spacemeshos/smcli/wallet" ) @@ -38,7 +38,7 @@ var ( // useLedger indicates that the Ledger device should be used. useLedger bool - // hrp is the human-readable network identifier used in Spacemesh network addresses + // hrp is the human-readable network identifier used in Spacemesh network addresses. hrp string ) diff --git a/wallet/wallet_test.go b/wallet/wallet_test.go index cbff256..663c82a 100644 --- a/wallet/wallet_test.go +++ b/wallet/wallet_test.go @@ -4,9 +4,9 @@ import ( "crypto/ed25519" "encoding/hex" "fmt" - "github.com/spacemeshos/go-spacemesh/common/types" "testing" + "github.com/spacemeshos/go-spacemesh/common/types" "github.com/stretchr/testify/require" "github.com/tyler-smith/go-bip39" )