mempool: simplify names of exported types

With the move to a separate package, naming can be simplified:
MemPool -> Pool, PoolItem -> Item, PoolItems -> Items.
This commit is contained in:
Evgenii Stratonikov 2020-01-15 15:10:05 +03:00
parent fed6fba9b6
commit 28183b81d6
4 changed files with 51 additions and 51 deletions

View file

@ -41,5 +41,5 @@ type Blockchainer interface {
References(t *transaction.Transaction) map[transaction.Input]*transaction.Output
mempool.Feer // fee interface
VerifyTx(*transaction.Transaction, *block.Block) error
GetMemPool() mempool.MemPool
GetMemPool() mempool.Pool
}