mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-05-31 01:59:30 +02:00
11 lines
173 B
Go
11 lines
173 B
Go
//go:build !libsecp256k1
|
|
|
|
package relays
|
|
|
|
import "github.com/nbd-wtf/go-nostr/core"
|
|
|
|
func checkSigOnRelay(evt core.Event) bool {
|
|
ok, _ := evt.CheckSignature()
|
|
return ok
|
|
}
|