Use same signature for unrealized justified hash and justified hash (#12314)

* Use same signature for unrealized justified hash and justified hash

* fix build
This commit is contained in:
Potuz
2023-04-20 12:59:12 -03:00
committed by GitHub
parent 6374cc0118
commit 300a827027
9 changed files with 12 additions and 26 deletions

View File

@@ -594,6 +594,6 @@ func (s *ChainService) FinalizedBlockHash() [32]byte {
}
// UnrealizedJustifiedPayloadBlockHash mocks the same method in the chain service
func (s *ChainService) UnrealizedJustifiedPayloadBlockHash() ([32]byte, error) {
return [32]byte{}, nil
func (s *ChainService) UnrealizedJustifiedPayloadBlockHash() [32]byte {
return [32]byte{}
}