We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28a8d74 commit 9c9796dCopy full SHA for 9c9796d
dot/sync/test_helpers.go
@@ -45,7 +45,7 @@ import (
45
func NewMockFinalityGadget() *syncmocks.FinalityGadget {
46
m := new(syncmocks.FinalityGadget)
47
// using []uint8 instead of []byte: https://github.com/stretchr/testify/pull/969
48
- m.On("VerifyBlockJustification", mock.AnythingOfType("[]uint8")).Return(nil)
+ m.On("VerifyBlockJustification", mock.AnythingOfType("common.Hash"), mock.AnythingOfType("[]uint8")).Return(nil)
49
return m
50
}
51
0 commit comments