Rename Codex to Storage

This commit is contained in:
Arnaud 2025-12-17 11:48:31 +01:00
parent 60861d6af8
commit dbe5a43a52
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F
2 changed files with 3 additions and 2 deletions

View File

@ -881,7 +881,8 @@ proc start*(self: CodexNodeRef) {.async.} =
self.contracts.validator = ValidatorInteractions.none
self.networkId = self.switch.peerInfo.peerId
notice "Started Storage node", id = self.networkId, addrs = self.switch.peerInfo.addrs
notice "Started Storage node",
id = self.networkId, addrs = self.switch.peerInfo.addrs
proc stop*(self: CodexNodeRef) {.async.} =
trace "Stopping node"

View File

@ -69,7 +69,7 @@ proc sanitize(pathSegment: string): string =
sanitized
proc getTempDirName*(starttime: string, role: Role, roleIdx: int): string =
getTempDir() / "Storage" / sanitize($starttime) / sanitize($role & "_" & $roleIdx)
getTempDir() / "Codex" / sanitize($starttime) / sanitize($role & "_" & $roleIdx)
template multinodesuite*(name: string, body: untyped) =
asyncchecksuite name: