1. 24 Aug, 2023 1 commit
  2. 06 Jul, 2023 1 commit
  3. 25 May, 2023 1 commit
  4. 04 May, 2023 1 commit
  5. 17 Apr, 2023 1 commit
  6. 03 Apr, 2023 1 commit
  7. 08 Mar, 2023 1 commit
  8. 20 Jan, 2023 1 commit
  9. 14 Dec, 2022 1 commit
  10. 25 Nov, 2022 1 commit
  11. 24 Nov, 2022 1 commit
  12. 08 Nov, 2022 1 commit
    • Joseph Cook's avatar
      cmd/clef: only print first N accounts on startup (#26128) · 6685f884
      Joseph Cook authored
      PR #26082 added account listing to OnSignerStartup but did not consider the case where a user has a large number of accounts which would be annoying to display.
      
      This PR updates showAccounts() so that if there are more than 20 accounts available the user sees the first 20 displayed in the console followed by: First 20 accounts listed (N more available).
      Co-authored-by: 's avatarMartin Holst Swende <martin@swende.se>
      6685f884
  13. 07 Nov, 2022 1 commit
  14. 04 Nov, 2022 1 commit
  15. 11 Oct, 2022 1 commit
  16. 10 Sep, 2022 1 commit
    • Felix Lange's avatar
      build: upgrade to go 1.19 (#25726) · b628d727
      Felix Lange authored
      This changes the CI / release builds to use the latest Go version. It also
      upgrades golangci-lint to a newer version compatible with Go 1.19.
      
      In Go 1.19, godoc has gained official support for links and lists. The
      syntax for code blocks in doc comments has changed and now requires a
      leading tab character. gofmt adapts comments to the new syntax
      automatically, so there are a lot of comment re-formatting changes in this
      PR. We need to apply the new format in order to pass the CI lint stage with
      Go 1.19.
      
      With the linter upgrade, I have decided to disable 'gosec' - it produces
      too many false-positive warnings. The 'deadcode' and 'varcheck' linters
      have also been removed because golangci-lint warns about them being
      unmaintained. 'unused' provides similar coverage and we already have it
      enabled, so we don't lose much with this change.
      b628d727
  17. 19 Aug, 2022 1 commit
  18. 10 Aug, 2022 1 commit
  19. 25 Jul, 2022 1 commit
  20. 22 Jul, 2022 1 commit
  21. 04 Jul, 2022 2 commits
  22. 14 Jun, 2022 2 commits
  23. 24 May, 2022 2 commits
  24. 17 May, 2022 1 commit
  25. 16 May, 2022 1 commit
  26. 10 May, 2022 1 commit
  27. 06 May, 2022 1 commit
  28. 25 Apr, 2022 1 commit
  29. 12 Apr, 2022 1 commit
  30. 08 Apr, 2022 1 commit
    • Eng Zer Jun's avatar
      all: use T.TempDir to create temporary test directories (#24633) · 8d066f1f
      Eng Zer Jun authored
      This commit replaces ioutil.TempDir with t.TempDir in tests. The
      directory created by t.TempDir is automatically removed when the test
      and all its subtests complete.
      
      Prior to this commit, temporary directory created using ioutil.TempDir
      had to be removed manually by calling os.RemoveAll, which is omitted in
      some tests. The error handling boilerplate e.g.
      
      	defer func() {
      		if err := os.RemoveAll(dir); err != nil {
      			t.Fatal(err)
      		}
      	}
      
      is also tedious, but t.TempDir handles this for us nicely.
      
      Reference: https://pkg.go.dev/testing#T.TempDirSigned-off-by: 's avatarEng Zer Jun <engzerjun@gmail.com>
      8d066f1f
  31. 04 Mar, 2022 1 commit
  32. 08 Feb, 2022 1 commit
  33. 21 Jan, 2022 1 commit
  34. 20 Jan, 2022 1 commit
    • Felix Lange's avatar
      rpc: add PeerInfo (#24255) · 5bcbb298
      Felix Lange authored
      This replaces the sketchy and undocumented string context keys for HTTP requests
      with a defined interface. Using string keys with context is discouraged because
      they may clash with keys created by other packages.
      
      We added these keys to make connection metadata available in the signer, so this
      change also updates signer/core to use the new PeerInfo API.
      5bcbb298
  35. 18 Jan, 2022 1 commit
  36. 05 Dec, 2021 1 commit
  37. 13 Oct, 2021 1 commit