forked from TrueCloudLab/neoneo-go
7acf5b2841
closes #831
11 lines
233 B
Go
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
|
|
}
|