We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef38da4 commit 578702cCopy full SHA for 578702c
consensus/replay_stubs.go
@@ -77,6 +77,10 @@ type mockProxyApp struct {
77
abciResponses *cmtstate.ABCIResponses
78
}
79
80
+func (mock *mockProxyApp) BeginBlock(req abci.RequestBeginBlock) abci.ResponseBeginBlock {
81
+ return *mock.abciResponses.BeginBlock
82
+}
83
+
84
func (mock *mockProxyApp) DeliverTx(req abci.RequestDeliverTx) abci.ResponseDeliverTx {
85
r := mock.abciResponses.DeliverTxs[mock.txCount]
86
mock.txCount++
0 commit comments