mirror of
https://github.com/AthanorLabs/atomic-swap.git
synced 2026-04-22 03:00:02 -04:00
10 lines
167 B
Go
10 lines
167 B
Go
package protocol
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
errInvalidSecp256k1Key = errors.New("secp256k1 public key resulting from proof verification does not match key sent")
|
|
)
|