bulid: only return semantic version from Version()

The version field in getinfo is kept the same for backwards
compatibility.
This commit is contained in:
Conner Fromknecht 2020-04-09 17:06:12 -07:00
parent a25269c4d3
commit 5c04038c18
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7
2 changed files with 1 additions and 4 deletions

View File

@ -77,9 +77,6 @@ func Version() string {
version = fmt.Sprintf("%s-%s", version, AppPreRelease)
}
// Append commit hash of current build to version.
version = fmt.Sprintf("%s commit=%s", version, Commit)
return version
}

View File

@ -2407,7 +2407,7 @@ func (r *rpcServer) GetInfo(ctx context.Context,
Alias: nodeAnn.Alias.String(),
Color: routing.EncodeHexColor(nodeAnn.RGBColor),
BestHeaderTimestamp: int64(bestHeaderTimestamp),
Version: build.Version(),
Version: build.Version() + " commit=" + build.Commit,
SyncedToGraph: isGraphSynced,
Features: features,
}, nil