Skip to content

Commit

Permalink
Update btcjson path import paths to new location.
Browse files Browse the repository at this point in the history
  • Loading branch information
davecgh committed Feb 19, 2015
1 parent d68ac86 commit b8f3da6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ websocket.JSON.Send(btcdWSConn, cmd)
// Server Side
import (
"golang.org/x/net/websocket"
"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcws"
)

Expand Down
2 changes: 1 addition & 1 deletion cmds.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"encoding/json"
"errors"

"github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcd/wire"
"github.com/btcsuite/btcjson"
)

// Help texts
Expand Down
2 changes: 1 addition & 1 deletion cmds_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"reflect"
"testing"

"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcd/btcjson"
"github.com/davecgh/go-spew/spew"
)

Expand Down
2 changes: 1 addition & 1 deletion notifications.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"encoding/json"
"errors"

"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcd/btcjson"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion notifications_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"reflect"
"testing"

"github.com/btcsuite/btcjson"
"github.com/btcsuite/btcd/btcjson"
"github.com/btcsuite/btcws"
"github.com/davecgh/go-spew/spew"
)
Expand Down

0 comments on commit b8f3da6

Please sign in to comment.