Skip to content

Commit

Permalink
feat(ARCO-212): Rename folders to camel case
Browse files Browse the repository at this point in the history
  • Loading branch information
boecklim committed Nov 14, 2024
1 parent 35e0080 commit 9125dd7
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require (
github.com/go-testfixtures/testfixtures/v3 v3.9.0
github.com/go-zeromq/zmq4 v0.17.0
github.com/golang-migrate/migrate/v4 v4.16.2
github.com/google/go-cmp v0.6.0
github.com/google/uuid v1.6.0
github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus v1.0.1
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.1.0
Expand Down
6 changes: 3 additions & 3 deletions pkg/api/handler/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
"github.com/bitcoin-sv/arc/internal/version"
"github.com/bitcoin-sv/arc/internal/woc_client"
"github.com/bitcoin-sv/arc/pkg/api"
merkleverifier "github.com/bitcoin-sv/arc/pkg/api/handler/internal/MerkeVerifier"
txfinder "github.com/bitcoin-sv/arc/pkg/api/handler/internal/TxFinder"
"github.com/bitcoin-sv/arc/pkg/api/handler/internal/merkle_verifier"
txfinder "github.com/bitcoin-sv/arc/pkg/api/handler/internal/tx_finder"
"github.com/bitcoin-sv/arc/pkg/blocktx"
"github.com/bitcoin-sv/arc/pkg/metamorph"
)
Expand Down Expand Up @@ -101,7 +101,7 @@ func NewDefault(
wocClient = woc_client.New(false)
}

mr := merkleverifier.New(merkleRootsVerifier)
mr := merkle_verifier.New(merkleRootsVerifier)

handler := &ArcDefaultHandler{
TransactionHandler: transactionHandler,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package merkleverifier
package merkle_verifier

import (
"context"
Expand Down

0 comments on commit 9125dd7

Please sign in to comment.