mirror of
https://github.com/AthanorLabs/atomic-swap.git
synced 2026-01-07 21:34:05 -05:00
16 lines
431 B
Go
16 lines
431 B
Go
// Copyright 2023 The AthanorLabs/atomic-swap Authors
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
package coins
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
errNegativePiconeros = errors.New("negative piconero values are not supported")
|
|
errNegativeWei = errors.New("negative Wei values are not supported")
|
|
// ErrInvalidCoin is generated when a ProvidesCoin type has an invalid string
|
|
ErrInvalidCoin = errors.New("invalid ProvidesCoin")
|
|
)
|