update: import utils, remove unused logs, and bump version
Some checks failed
Go / build (push) Has been cancelled
Go / release (push) Has been cancelled

- pkg/crypto/p256k/btcec/btcec_test.go
  - Added `orly.dev/pkg/utils` import.

- pkg/protocol/ws/client.go
  - Commented out unused logging related to filter matching.

- pkg/version/version
  - Bumped version from `v0.8.1` to `v0.8.2`.
This commit is contained in:
2025-08-17 18:17:21 +01:00
parent fd76013c10
commit f1e8b52519
3 changed files with 6 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ package btcec_test
import (
"bufio"
"bytes"
"orly.dev/pkg/utils"
"testing"
"time"

View File

@@ -318,10 +318,10 @@ func (r *Client) ConnectWithTLS(
} else {
// check if the event matches the desired filter, ignore otherwise
if !sub.Filters.Match(env.Event) {
log.D.F(
"{%s} filter does not match: %v ~ %v\n", r.URL,
sub.Filters, env.Event,
)
// log.D.F(
// "{%s} filter does not match: %v ~ %v\n", r.URL,
// sub.Filters, env.Event,
// )
continue
}
// check signature, ignore invalid, except from trusted (AssumeValid) relays

View File

@@ -1 +1 @@
v0.8.1
v0.8.2