From d68ac86944ffb9323d49d4814eac57164c043c97 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 5 Feb 2015 15:02:20 -0600 Subject: [PATCH] Update btcwire path import paths to new location. --- cmds.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmds.go b/cmds.go index 581673fb..340bd25c 100644 --- a/cmds.go +++ b/cmds.go @@ -8,8 +8,8 @@ import ( "encoding/json" "errors" + "github.com/btcsuite/btcd/wire" "github.com/btcsuite/btcjson" - "github.com/btcsuite/btcwire" ) // Help texts @@ -717,8 +717,8 @@ type OutPoint struct { } // NewOutPointFromWire creates a new OutPoint from the OutPoint structure -// of the btcwire package. -func NewOutPointFromWire(op *btcwire.OutPoint) *OutPoint { +// of the wire package. +func NewOutPointFromWire(op *wire.OutPoint) *OutPoint { return &OutPoint{ Hash: op.Hash.String(), Index: op.Index,