diff --git a/ProjectPlugins/CodexPlugin/CodexStartupConfig.cs b/ProjectPlugins/CodexPlugin/CodexStartupConfig.cs index bd508c17..12109684 100644 --- a/ProjectPlugins/CodexPlugin/CodexStartupConfig.cs +++ b/ProjectPlugins/CodexPlugin/CodexStartupConfig.cs @@ -52,7 +52,11 @@ namespace CodexPlugin "connection", "connmanager", "websock", - "ws-session" + "ws-session", + "dialer", + "muxedupgrade", + "upgrade", + "identify" }; var blockExchangeTopics = new[] { @@ -60,7 +64,9 @@ namespace CodexPlugin "pendingblocks", "peerctxstore", "discoveryengine", - "repostore" + "blockexcengine", + "blockexcnetwork", + "blockexcnetworkpeer" }; level = $"{level};" + diff --git a/Tests/CodexTests/BasicTests/ExampleTests.cs b/Tests/CodexTests/BasicTests/ExampleTests.cs index 7916d38c..2f01ae29 100644 --- a/Tests/CodexTests/BasicTests/ExampleTests.cs +++ b/Tests/CodexTests/BasicTests/ExampleTests.cs @@ -60,6 +60,7 @@ namespace CodexTests.BasicTests var contracts = Ci.StartCodexContracts(geth); var seller = AddCodex(s => s + .WithLogLevel(CodexLogLevel.Trace, new CodexLogCustomTopics(CodexLogLevel.Error, CodexLogLevel.Error, CodexLogLevel.Warn)) .WithStorageQuota(11.GB()) .EnableMarketplace(geth, contracts, initialEth: 10.Eth(), initialTokens: sellerInitialBalance, isValidator: true) .WithSimulateProofFailures(failEveryNProofs: 3));