Skip to content

Commit 1567585

Browse files
committed
chore(mbe): remove DEBUG_NAMESPACE config
Ticket: WP-5364
1 parent 18848f8 commit 1567585

21 files changed

+1
-28
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ Both modes use the same TLS configuration variables:
7676
### Logging and Debug
7777

7878
- `LOGFILE` - Path to log file (optional)
79-
- `DEBUG_NAMESPACE` - Debug namespaces to enable (e.g., 'enclaved:\*')
8079

8180
## Quick Start
8281

@@ -232,6 +231,7 @@ curl -k -X POST https://localhost:3081/ping/enclavedExpress
232231
```
233232

234233
Notes:
234+
235235
- `host.containers.internal` is a special DNS name that resolves to the host machine from inside containers
236236
- The `:Z` option in volume mounts is specific to SELinux-enabled systems and ensures proper volume labeling
237237
- The logs directory will be created with appropriate permissions if it doesn't exist

src/__tests__/api/enclaved/postIndependentKey.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ describe('postIndependentKey', () => {
3737
kmsUrl: kmsUrl,
3838
tlsMode: TlsMode.DISABLED,
3939
allowSelfSigned: true,
40-
debugNamespace: [],
4140
};
4241

4342
configStub = sinon.stub(configModule, 'initConfig').returns(cfg);

src/__tests__/api/enclaved/postMpcV2Key.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ describe('postMpcV2Key', () => {
3939
kmsUrl: kmsUrl,
4040
tlsMode: TlsMode.DISABLED,
4141
allowSelfSigned: true,
42-
debugNamespace: [],
4342
};
4443

4544
configStub = sinon.stub(configModule, 'initConfig').returns(cfg);

src/__tests__/api/enclaved/recoveryMultisigTransaction.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ describe('UTXO recovery', () => {
2222
logFile: '',
2323
tlsMode: TlsMode.DISABLED,
2424
allowSelfSigned: true,
25-
debugNamespace: [],
2625
kmsUrl: 'kms.example.com',
2726
};
2827

src/__tests__/api/enclaved/recoveryMusigEth.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ describe('recoveryMultisigTransaction', () => {
4040
kmsUrl: kmsUrl,
4141
tlsMode: TlsMode.DISABLED,
4242
allowSelfSigned: true,
43-
debugNamespace: [],
4443
};
4544

4645
configStub = sinon.stub(configModule, 'initConfig').returns(cfg);

src/__tests__/api/enclaved/signMpcRecoveryTransaction.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ describe('EdDSA Recovery Signing', () => {
1717
logFile: '',
1818
tlsMode: TlsMode.DISABLED,
1919
allowSelfSigned: true,
20-
debugNamespace: [],
21-
kmsUrl: 'kms.example.com',
2220
};
2321

2422
const commonKeychain =

src/__tests__/api/enclaved/signMpcTransaction.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ describe('signMpcTransaction', () => {
4444
kmsUrl: kmsUrl,
4545
tlsMode: TlsMode.DISABLED,
4646
allowSelfSigned: true,
47-
debugNamespace: [],
4847
};
4948

5049
configStub = sinon.stub(configModule, 'initConfig').returns(cfg);

src/__tests__/api/enclaved/signMultisigTransaction.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ describe('signMultisigTransaction', () => {
3737
kmsUrl: kmsUrl,
3838
tlsMode: TlsMode.DISABLED,
3939
allowSelfSigned: true,
40-
debugNamespace: [],
4140
};
4241

4342
configStub = sinon.stub(configModule, 'initConfig').returns(cfg);

src/__tests__/api/master/accelerate.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ describe('POST /api/:coin/wallet/:walletId/accelerate', () => {
3131
enclavedExpressCert: 'test-cert',
3232
tlsMode: TlsMode.DISABLED,
3333
allowSelfSigned: true,
34-
debugNamespace: [],
3534
};
3635

3736
const app = expressApp(config);

src/__tests__/api/master/consolidate.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ describe('POST /api/:coin/wallet/:walletId/consolidateunspents', () => {
3434
enclavedExpressCert: 'test-cert',
3535
tlsMode: TlsMode.DISABLED,
3636
allowSelfSigned: true,
37-
debugNamespace: [],
3837
};
3938

4039
const app = expressApp(config);

0 commit comments

Comments
 (0)