Skip to content

Commit 5052cfe

Browse files
authored
chore: fix some typos in comment (#514)
Signed-off-by: luozexuan <[email protected]>
1 parent a49b42f commit 5052cfe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pkg/client-sdk/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ func getWallet(
396396
return getSingleKeyWallet(configStore, data.Network.Name)
397397
default:
398398
return nil, fmt.Errorf(
399-
"unsuported wallet type '%s', please select one of: %s",
399+
"unsupported wallet type '%s', please select one of: %s",
400400
data.WalletType, supportedWallets,
401401
)
402402
}

pkg/client-sdk/covenant_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func LoadCovenantClient(sdkStore types.Store) (ArkClient, error) {
106106
supportedWallets,
107107
)
108108
if err != nil {
109-
return nil, fmt.Errorf("faile to setup wallet: %s", err)
109+
return nil, fmt.Errorf("failed to setup wallet: %s", err)
110110
}
111111

112112
covenantClient := covenantArkClient{

pkg/client-sdk/covenantless_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ func LoadCovenantlessClient(sdkStore types.Store) (ArkClient, error) {
174174
supportedWallets,
175175
)
176176
if err != nil {
177-
return nil, fmt.Errorf("faile to setup wallet: %s", err)
177+
return nil, fmt.Errorf("failed to setup wallet: %s", err)
178178
}
179179

180180
covenantlessClient := covenantlessArkClient{

0 commit comments

Comments
 (0)