mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 13:38:35 +00:00
5354352d63
There is no such thing as high/low priority transactions, as there are no free transactions anymore and they are ordered by fees contained in transaction itself. Closes #1063.
11 lines
250 B
Go
11 lines
250 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 {
|
|
FeePerByte() util.Fixed8
|
|
GetUtilityTokenBalance(util.Uint160) util.Fixed8
|
|
}
|