package common // Version is the single source of truth for this daemon's version. // // It was previously duplicated as a literal in two places that could drift: // cmd/server/main.go's --version output and the Version field of the LightdInfo // gRPC reply in frontend/service.go. The gRPC one is the load-bearing copy -- // it is walletrpc/service.proto:48, so every client and every operator probe // reads it, and it is the only way to tell from off-box which build a node is // running. const Version = "0.1.2" // VersionString is what GetLightdInfo advertises to clients. const VersionString = Version + "-dragonxlightd"