diff --git a/codex/conf.nim b/codex/conf.nim index 5587fb54..bc8b5506 100644 --- a/codex/conf.nim +++ b/codex/conf.nim @@ -510,9 +510,8 @@ const nimBanner* = getNimBanner() codexFullVersion* = - "Storage version: " & codexVersion & "\p" & "Storage revision: " & - codexRevision & "\p" & "Storage contracts revision: " & codexContractsRevision & - "\p" & nimBanner + "Storage version: " & codexVersion & "\p" & "Storage revision: " & codexRevision & + "\p" & "Storage contracts revision: " & codexContractsRevision & "\p" & nimBanner proc parseCmdArg*( T: typedesc[MultiAddress], input: string diff --git a/codex/node.nim b/codex/node.nim index ed4e111a..e5c8926e 100644 --- a/codex/node.nim +++ b/codex/node.nim @@ -881,8 +881,7 @@ 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" diff --git a/tests/integration/multinodes.nim b/tests/integration/multinodes.nim index cca809ce..5f149585 100644 --- a/tests/integration/multinodes.nim +++ b/tests/integration/multinodes.nim @@ -69,9 +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() / "Storage" / sanitize($starttime) / sanitize($role & "_" & $roleIdx) template multinodesuite*(name: string, body: untyped) = asyncchecksuite name: