Skip to content

Commit

Permalink
Fix some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenlu committed May 1, 2024
1 parent 02c3831 commit f62a9af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ require (
github.com/FactomProject/basen v0.0.0-20150613233007-fe3947df716e // indirect
github.com/FactomProject/btcutilecc v0.0.0-20130527213604-d3a63a5752ec // indirect
github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect
github.com/btcsuite/btcd/btcutil v1.1.5 // indirect
github.com/btcsuite/btcd/btcutil v1.1.5
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f // indirect
github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect
Expand Down
2 changes: 1 addition & 1 deletion remotesigning/validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func GetPaymentHashFromScript(scriptHex string) (*string, error) {
if len(match) > 0 {
return &match[1], nil
} else {
return nil, errors.New("No match found")
return nil, errors.New("no match found")
}
}

Expand Down

0 comments on commit f62a9af

Please sign in to comment.