Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
fix(BUX-299): use custom miner in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
arkadiuszos4chain committed Oct 20, 2023
1 parent e05ecbf commit 65bfbcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chainstate/chainstate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
// NewTestClient returns a test client
func NewTestClient(ctx context.Context, t *testing.T, opts ...ClientOps) ClientInterface {
c, err := NewClient(
ctx, append(opts, WithDebugging())...,
ctx, append(opts, WithDebugging(), WithMinercraft(&minerCraftTxOnChain{}))...,
)
require.NoError(t, err)
require.NotNil(t, c)
Expand Down

0 comments on commit 65bfbcc

Please sign in to comment.