Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Apr 29, 2024
1 parent f68a5fd commit b7645a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
c2sp.org/CCTV/age v0.0.0-20221230231406-5ea85644bd03 h1:0e2QjhWG02SgzlUOvNYaFraf04OBsUPOLxf+K+Ae/yM=
c2sp.org/CCTV/age v0.0.0-20221230231406-5ea85644bd03/go.mod h1:FomMrUJ2Lxt5jCLmZkG3FHa72zUprnhd3v/Z18Snm4w=
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU=
Expand Down
7 changes: 5 additions & 2 deletions gomod2nix.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ schema = 3
version = "v0.1.1"
hash = "sha256-bM9ybpaibMH7k4M6/QAXCZ3fJcADfJHxvMgp4AVUihs="
[mod."filippo.io/age"]
version = "v1.1.2-0.20240110114017-29b68c20fc24"
hash = "sha256-LZ6W2ZNQyA1s6SAY5rXOhztgF0pmCKQR7B+73V1tB4Q="
version = "v1.1.1"
hash = "sha256-LRxxJQLQkzoCNYGS/XBixVmYXoZ1mPHKvFicPGXYLcw="
[mod."filippo.io/edwards25519"]
version = "v1.1.0"
hash = "sha256-9ACANrgWZSd5HYPfDZHY8DVbPSC9LOMgy8deq3rDOoc="
Expand Down Expand Up @@ -578,6 +578,9 @@ schema = 3
[mod."github.com/tendermint/go-amino"]
version = "v0.16.0"
hash = "sha256-JW4zO/0vMzf1dXLePOqaMtiLUZgNbuIseh9GV+jQlf0="
[mod."github.com/test-go/testify"]
version = "v1.1.4"
hash = "sha256-8xygO1Rd4eTrmRe/g7zaifpNkeb6EmjNfUvTWbjDtPg="
[mod."github.com/tidwall/btree"]
version = "v0.0.0-20240406140148-2687063b042c"
hash = "sha256-8eDLGHhw4qXG6MEa7w5Q9KLwOobXr8Vn5qqyQhuipQw="
Expand Down
2 changes: 1 addition & 1 deletion x/e2ee/client/cli/encrypt.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func EncryptCommand() *cobra.Command {
if err != nil {
return err

Check warning on line 49 in x/e2ee/client/cli/encrypt.go

View check run for this annotation

Codecov / codecov/patch

x/e2ee/client/cli/encrypt.go#L42-L49

Added lines #L42 - L49 were not covered by tests
}
recipient, err := age.ParseX25519Recipient(string(rsp.Key))
recipient, err := age.ParseX25519Recipient(rsp.Key)
if err != nil {
return err

Check warning on line 53 in x/e2ee/client/cli/encrypt.go

View check run for this annotation

Codecov / codecov/patch

x/e2ee/client/cli/encrypt.go#L51-L53

Added lines #L51 - L53 were not covered by tests
}
Expand Down

0 comments on commit b7645a5

Please sign in to comment.