core: remove transaction priority

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.
This commit is contained in:
Evgenii Stratonikov 2020-06-18 22:32:29 +03:00
parent 2f724b792c
commit 5354352d63
17 changed files with 8 additions and 54 deletions

View file

@ -85,10 +85,6 @@ func initServerWithInMemoryChain(t *testing.T) (*core.Blockchain, *Server, *http
type FeerStub struct{}
func (fs *FeerStub) IsLowPriority(util.Fixed8) bool {
return false
}
func (fs *FeerStub) FeePerByte() util.Fixed8 {
return 0
}