From 7b184ab3fd61d6420d09caa84ccefac70970fd1a Mon Sep 17 00:00:00 2001 From: JoeGruffins <34998433+JoeGruffins@users.noreply.github.com> Date: Sun, 26 Sep 2021 00:49:31 +0900 Subject: [PATCH] rpctest: Remove unused BlockVersion const. --- rpctest/rpc_harness.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/rpctest/rpc_harness.go b/rpctest/rpc_harness.go index 7bbe11f5..835fdbef 100644 --- a/rpctest/rpc_harness.go +++ b/rpctest/rpc_harness.go @@ -67,12 +67,6 @@ var ( pathToDCRDMtx sync.RWMutex ) -const ( - // BlockVersion is the default block version used when generating - // blocks. - BlockVersion = 3 -) - // HarnessTestCase represents a test-case which utilizes an instance of the // Harness to exercise functionality. type HarnessTestCase func(ctx context.Context, r *Harness, t *testing.T)