Update version info
This commit is contained in:
parent
4f87ff72d2
commit
4361f7057d
3 changed files with 26 additions and 4 deletions
|
@ -87,8 +87,9 @@ func (s *NetworkAPIService) NetworkOptions(
|
||||||
) (*types.NetworkOptionsResponse, *types.Error) {
|
) (*types.NetworkOptionsResponse, *types.Error) {
|
||||||
return &types.NetworkOptionsResponse{
|
return &types.NetworkOptionsResponse{
|
||||||
Version: &types.Version{
|
Version: &types.Version{
|
||||||
RosettaVersion: "1.4.2",
|
RosettaVersion: RosettaVersion,
|
||||||
NodeVersion: "0.0.1",
|
NodeVersion: NodeVersion,
|
||||||
|
MiddlewareVersion: &MiddlewareVersion,
|
||||||
},
|
},
|
||||||
Allow: &types.Allow{
|
Allow: &types.Allow{
|
||||||
OperationStatuses: bitcoin.OperationStatuses,
|
OperationStatuses: bitcoin.OperationStatuses,
|
||||||
|
|
|
@ -27,10 +27,12 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
middlewareVersion = "0.0.2"
|
||||||
defaultNetworkOptions = &types.NetworkOptionsResponse{
|
defaultNetworkOptions = &types.NetworkOptionsResponse{
|
||||||
Version: &types.Version{
|
Version: &types.Version{
|
||||||
RosettaVersion: "1.4.2",
|
RosettaVersion: "1.4.4",
|
||||||
NodeVersion: "0.0.1",
|
NodeVersion: "0.20.1",
|
||||||
|
MiddlewareVersion: &middlewareVersion,
|
||||||
},
|
},
|
||||||
Allow: &types.Allow{
|
Allow: &types.Allow{
|
||||||
OperationStatuses: bitcoin.OperationStatuses,
|
OperationStatuses: bitcoin.OperationStatuses,
|
||||||
|
|
|
@ -22,6 +22,25 @@ import (
|
||||||
"github.com/coinbase/rosetta-sdk-go/types"
|
"github.com/coinbase/rosetta-sdk-go/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// RosettaVersion is the version of the
|
||||||
|
// Rosetta Specification we are using.
|
||||||
|
RosettaVersion = "1.4.4"
|
||||||
|
|
||||||
|
// NodeVersion is the version of
|
||||||
|
// bitcoin core we are using.
|
||||||
|
NodeVersion = "0.20.1"
|
||||||
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
// MiddlewareVersion is the version
|
||||||
|
// of rosetta-bitcoin. We set this as a
|
||||||
|
// variable instead of a constant because
|
||||||
|
// we typically need the pointer of this
|
||||||
|
// value.
|
||||||
|
MiddlewareVersion = "0.0.2"
|
||||||
|
)
|
||||||
|
|
||||||
// Client is used by the servicers to get Peer information
|
// Client is used by the servicers to get Peer information
|
||||||
// and to submit transactions.
|
// and to submit transactions.
|
||||||
type Client interface {
|
type Client interface {
|
||||||
|
|
Loading…
Reference in a new issue