OSDN Git Service

Merge pull request #201 from Bytom/v0.1
[bytom/vapor.git] / vendor / github.com / btcsuite / btcd / btcjson / btcdextresults.go
diff --git a/vendor/github.com/btcsuite/btcd/btcjson/btcdextresults.go b/vendor/github.com/btcsuite/btcd/btcjson/btcdextresults.go
deleted file mode 100644 (file)
index 0f7bc70..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (c) 2016-2017 The btcsuite developers
-// Copyright (c) 2015-2017 The Decred developers
-// Use of this source code is governed by an ISC
-// license that can be found in the LICENSE file.
-
-package btcjson
-
-// VersionResult models objects included in the version response.  In the actual
-// result, these objects are keyed by the program or API name.
-//
-// NOTE: This is a btcsuite extension ported from
-// github.com/decred/dcrd/dcrjson.
-type VersionResult struct {
-       VersionString string `json:"versionstring"`
-       Major         uint32 `json:"major"`
-       Minor         uint32 `json:"minor"`
-       Patch         uint32 `json:"patch"`
-       Prerelease    string `json:"prerelease"`
-       BuildMetadata string `json:"buildmetadata"`
-}