neoneo-go/pkg/core/mempool/feer.go
2020-05-20 23:26:48 +03:00

11 lines
233 B
Go

package mempool
import (
"github.com/nspcc-dev/neo-go/pkg/util"
)
// Feer is an interface that abstract the implementation of the fee calculation.
type Feer interface {
IsLowPriority(util.Fixed8) bool
FeePerByte() util.Fixed8
}