Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Kourin1996 committed Jan 29, 2025
1 parent d53ab06 commit 4ab43d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions miner/payload_building_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ func newTestWorkerBackend(t *testing.T, chainConfig *params.ChainConfig, engine

func (b *testWorkerBackend) BlockChain() *core.BlockChain { return b.chain }
func (b *testWorkerBackend) TxPool() *txpool.TxPool { return b.txPool }
func (m *testWorkerBackend) CeloAPIBackend() APIBackend {
return m.apiBackend
func (b *testWorkerBackend) CeloAPIBackend() APIBackend {
return b.apiBackend
}

func newTestWorker(t *testing.T, chainConfig *params.ChainConfig, engine consensus.Engine, db ethdb.Database, blocks int) (*Miner, *testWorkerBackend) {
Expand Down

0 comments on commit 4ab43d9

Please sign in to comment.