Skip to content

Commit

Permalink
add version info to user agent
Browse files Browse the repository at this point in the history
it's "release" 0.1, whatever that means :)
  • Loading branch information
adiabat committed May 11, 2017
1 parent 456530f commit a2c5c5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lit.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func linkWallets(node *qln.LitNode, key *[32]byte, conf *LitConfig) error {

func main() {

log.Printf("lit node v0.1\n")
log.Printf("lit v0.1\n")
log.Printf("-h for list of options.\n")

conf := new(LitConfig)
Expand Down
2 changes: 1 addition & 1 deletion uspv/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func (s *SPVCon) Connect(remoteNode string) error {
if err != nil {
return err
}
err = myMsgVer.AddUserAgent("test", "zero")
err = myMsgVer.AddUserAgent("lit", "v0.1")
if err != nil {
return err
}
Expand Down

0 comments on commit a2c5c5b

Please sign in to comment.