Skip to content

Commit 8b60a22

Browse files
author
tac0turtle
committed
fix merge
1 parent 90b2d30 commit 8b60a22

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

docs/guides/da/celestia-da.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ Next, let's set up the namespace to be used for posting data on Celestia. Evolve
108108
DA_NAMESPACE="fancy_namespace"
109109
```
110110

111-
112111
**Advanced Configuration:** For production deployments, you can use separate namespaces for headers and data to optimize syncing:
112+
113113
- `--evolve.da.header_namespace` for block headers
114114
- `--evolve.da.data_namespace` for transaction data
115115

pkg/cmd/run_node.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"fmt"
77
"os"
88
"os/signal"
9+
"path/filepath"
910
"syscall"
1011
"time"
1112

pkg/rpc/client/client_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func setupTestServer(t *testing.T, mockStore *mocks.MockStore, mockP2P *mocks.Mo
3333
storeServer := server.NewStoreServer(mockStore, logger)
3434
p2pServer := server.NewP2PServer(mockP2P)
3535
healthServer := server.NewHealthServer()
36-
36+
3737
// Create config server with test config
3838
testConfig := config.DefaultConfig
3939
testConfig.DA.Namespace = "test-headers"
@@ -46,11 +46,11 @@ func setupTestServer(t *testing.T, mockStore *mocks.MockStore, mockP2P *mocks.Mo
4646
// Register the p2p service
4747
p2pPath, p2pHandler := rpc.NewP2PServiceHandler(p2pServer)
4848
mux.Handle(p2pPath, p2pHandler)
49-
49+
5050
// Register the health service
5151
healthPath, healthHandler := rpc.NewHealthServiceHandler(healthServer)
5252
mux.Handle(healthPath, healthHandler)
53-
53+
5454
// Register the config service
5555
configPath, configHandler := rpc.NewConfigServiceHandler(configServer)
5656
mux.Handle(configPath, configHandler)

0 commit comments

Comments
 (0)