Skip to content

Commit

Permalink
lint error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gregns1 committed Nov 9, 2023
1 parent 316a5a9 commit a15888b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rest/blip_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,8 @@ func (btcRunner *BlipTestClientRunner) NewBlipTesterClientOptsWithRT(rt *RestTes
id: id.ID(),
}
btcRunner.clients[client.id] = client
client.createBlipTesterReplications()
err = client.createBlipTesterReplications()
require.NoError(btcRunner.t, err)

return client
}
Expand Down

0 comments on commit a15888b

Please sign in to comment.