mirror of
https://github.com/status-im/status-go.git
synced 2025-02-03 10:25:35 +00:00
ad326fa290
Allows runnning a store node depending on node config settings.
20 lines
670 B
Go
20 lines
670 B
Go
// Copyright (c) 2013-2021 The btcsuite developers
|
|
// Copyright (c) 2015-2021 The Decred developers
|
|
|
|
package btcec
|
|
|
|
import (
|
|
secp "github.com/decred/dcrd/dcrec/secp256k1/v4"
|
|
)
|
|
|
|
// Error identifies an error related to public key cryptography using a
|
|
// sec256k1 curve. It has full support for errors.Is and errors.As, so the
|
|
// caller can ascertain the specific reason for the error by checking the
|
|
// underlying error.
|
|
type Error = secp.Error
|
|
|
|
// ErrorKind identifies a kind of error. It has full support for errors.Is and
|
|
// errors.As, so the caller can directly check against an error kind when
|
|
// determining the reason for an error.
|
|
type ErrorKind = secp.ErrorKind
|