Skip to content

Commit

Permalink
update imports and modules from gochain-io to gochain (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmank88 authored Aug 29, 2019
1 parent 74d6063 commit d1ec44f
Show file tree
Hide file tree
Showing 7 changed files with 87 additions and 64 deletions.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"io"
"net/http"

"github.com/gochain-io/gochain/v3/common"
"github.com/gochain/gochain/v3/common"
cid "github.com/ipfs/go-cid"
)

Expand Down
8 changes: 4 additions & 4 deletions cmd/gofs/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ import (
"time"

"github.com/alecthomas/units"
"github.com/gochain-io/gochain/v3/common"
"github.com/gochain-io/gochain/v3/core/types"
"github.com/gochain-io/gochain/v3/crypto"
"github.com/gochain-io/gofs"
"github.com/gochain-io/web3"
"github.com/gochain/gochain/v3/common"
"github.com/gochain/gochain/v3/core/types"
"github.com/gochain/gochain/v3/crypto"
"github.com/gochain/gofs"
cid "github.com/ipfs/go-cid"
"github.com/urfave/cli"
)
Expand Down
12 changes: 6 additions & 6 deletions contract_gofs.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions contract_igofs.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 3 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
module github.com/gochain-io/gofs
module github.com/gochain/gofs

go 1.12

require (
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf
github.com/aristanetworks/goarista v0.0.0-20190319235110-489128639c40 // indirect
github.com/gochain-io/gochain/v3 v3.1.14
github.com/gochain-io/web3 v0.1.2
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/gochain/gochain/v3 v3.2.9
github.com/ipfs/go-cid v0.0.1
github.com/pborman/uuid v1.2.0 // indirect
github.com/rjeczalik/notify v0.9.2 // indirect
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/urfave/cli v1.20.0
go.opencensus.io v0.19.1 // indirect
golang.org/x/crypto v0.0.0-20190320223903-b7391e95e576 // indirect
golang.org/x/net v0.0.0-20190311183353-d8887717615a // indirect
golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6 // indirect
golang.org/x/tools v0.0.0-20190121143147-24cd39ecf745 // indirect
github.com/urfave/cli v1.21.0
)
89 changes: 59 additions & 30 deletions go.sum

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions gofs.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import (
"strings"
"time"

"github.com/gochain-io/gochain/v3"
"github.com/gochain-io/gochain/v3/accounts/abi"
"github.com/gochain-io/gochain/v3/accounts/abi/bind"
"github.com/gochain-io/gochain/v3/common"
"github.com/gochain-io/gochain/v3/common/hexutil"
"github.com/gochain-io/gochain/v3/core/types"
"github.com/gochain-io/gochain/v3/crypto"
"github.com/gochain-io/gochain/v3/goclient"
"github.com/gochain/gochain/v3"
"github.com/gochain/gochain/v3/accounts/abi"
"github.com/gochain/gochain/v3/accounts/abi/bind"
"github.com/gochain/gochain/v3/common"
"github.com/gochain/gochain/v3/common/hexutil"
"github.com/gochain/gochain/v3/core/types"
"github.com/gochain/gochain/v3/crypto"
"github.com/gochain/gochain/v3/goclient"
cid "github.com/ipfs/go-cid"
)

Expand Down

0 comments on commit d1ec44f

Please sign in to comment.