Files
atomic-swap/coins/errors.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")
)