Skip to content

Commit

Permalink
Revert "Fix contract test issue"
Browse files Browse the repository at this point in the history
This reverts commit e40c6ca.
  • Loading branch information
ethanfrey committed Jun 16, 2019
1 parent 74ff91c commit 2dd520f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/make -f

PACKAGES_NOSIMULATION=$(shell go list ./... | grep -v '/simulation' | grep -v '/x/contract/examples')
PACKAGES_NOSIMULATION=$(shell go list ./... | grep -v '/simulation' | grep -v '/x/contract')
PACKAGES_SIMTEST=$(shell go list ./... | grep '/simulation')
VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')
COMMIT := $(shell git log -1 --format='%H')
Expand Down
2 changes: 1 addition & 1 deletion x/contract/examples/imports.go → x/contract/imports.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package examples
package contract

/*
Imports are exposed to all wasm functions
Expand Down
2 changes: 1 addition & 1 deletion x/contract/examples/wasm.go → x/contract/wasm.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package examples
package contract

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package examples
package contract

import (
"strings"
Expand Down

0 comments on commit 2dd520f

Please sign in to comment.