Skip to content

Commit

Permalink
Update consensus_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
jagdeep sidhu committed Jul 12, 2022
1 parent ef1edb4 commit c814dc7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion consensus/beacon/consensus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ func (m *mockChain) GetHeader(hash common.Hash, number uint64) *types.Header {
func (m *mockChain) GetHeaderByNumber(number uint64) *types.Header { panic("not implemented") }

func (m *mockChain) GetHeaderByHash(hash common.Hash) *types.Header { panic("not implemented") }

// SYSCOIN
func (m *mockChain) HasNEVMMapping(hash common.Hash) bool { panic("not implemented") }
func (m *mockChain) GetTd(hash common.Hash, number uint64) *big.Int {
num, ok := m.tds[number]
if ok {
Expand Down

0 comments on commit c814dc7

Please sign in to comment.