feat: Implement PrepareProposal ABCI Handler [ENG-541] (#13)

This commit is contained in:
Aleksandr Bezobchuk
2023-03-13 12:43:47 -04:00
committed by GitHub
parent afd56f2bbf
commit 629a3b3edd
5 changed files with 216 additions and 14 deletions
+7
View File
@@ -127,6 +127,13 @@ func (am *AuctionMempool) Select(ctx context.Context, txs [][]byte) sdkmempool.I
return am.globalIndex.Select(ctx, txs)
}
func (am *AuctionMempool) AuctionBidSelect(ctx context.Context) sdkmempool.Iterator {
// TODO: return am.auctionIndex.Select(ctx, nil)
//
// Ref: ENG-547
panic("not implemented")
}
func (am *AuctionMempool) CountTx() int {
return am.globalIndex.CountTx()
}