Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

made every instance of CosmWasm used in .go files cosmwasm. #138

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/stretchr/testify/require"

"github.com/CosmWasm/go-cosmwasm/types"
"github.com/cosmwasm/go-cosmwasm/types"
)

func TestCanonicalAddressFailure(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion api/callbacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import (

dbm "github.com/tendermint/tm-db"

"github.com/CosmWasm/go-cosmwasm/types"
"github.com/cosmwasm/go-cosmwasm/types"
)

// Note: we have to include all exports in the same file (at least since they both import bindings.h),
Expand Down
2 changes: 1 addition & 1 deletion api/iterator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/stretchr/testify/require"

"github.com/CosmWasm/go-cosmwasm/types"
"github.com/cosmwasm/go-cosmwasm/types"
)

type queueData struct {
Expand Down
2 changes: 1 addition & 1 deletion api/lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"syscall"

"github.com/CosmWasm/go-cosmwasm/types"
"github.com/cosmwasm/go-cosmwasm/types"
)

// nice aliases to the rust names
Expand Down
2 changes: 1 addition & 1 deletion api/lib_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

"github.com/CosmWasm/go-cosmwasm/types"
"github.com/cosmwasm/go-cosmwasm/types"
)

const DEFAULT_FEATURES = "staking"
Expand Down
2 changes: 1 addition & 1 deletion api/mock_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/stretchr/testify/require"
dbm "github.com/tendermint/tm-db"

"github.com/CosmWasm/go-cosmwasm/types"
"github.com/cosmwasm/go-cosmwasm/types"
)

/*** Mock GasMeter ****/
Expand Down
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
wasm "github.com/CosmWasm/go-cosmwasm"
wasm "github.com/cosmwasm/go-cosmwasm"
"io/ioutil"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/CosmWasm/go-cosmwasm
module github.com/cosmwasm/go-cosmwasm

go 1.14

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
github.com/CosmWasm/go-cosmwasm v0.7.2 h1:pnEmTbML0jEWKjnRutTsA0XfKnjN1b9vrCDUQMQ8slY=
github.com/CosmWasm/go-cosmwasm v0.7.2/go.mod h1:pHipRby+f3cv97QPLELkzOAlNs/s87uDyhc+SnMn7L4=
github.com/cosmwasm/go-cosmwasm v0.7.2 h1:pnEmTbML0jEWKjnRutTsA0XfKnjN1b9vrCDUQMQ8slY=
github.com/cosmwasm/go-cosmwasm v0.7.2/go.mod h1:pHipRby+f3cv97QPLELkzOAlNs/s87uDyhc+SnMn7L4=
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand Down
4 changes: 2 additions & 2 deletions lib.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/json"
"fmt"

"github.com/CosmWasm/go-cosmwasm/api"
"github.com/CosmWasm/go-cosmwasm/types"
"github.com/cosmwasm/go-cosmwasm/api"
"github.com/cosmwasm/go-cosmwasm/types"
)

// CodeID represents an ID for a given wasm code blob, must be generated from this library
Expand Down