OSDN Git Service

fix: use mainchain address for cross_chain_out (#131)
[bytom/vapor.git] / Makefile
index a0869e9..fa8426b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,6 @@ endif
 endif
 
 PACKAGES    := $(shell go list ./... | grep -v '/vendor/' | grep -v '/crypto/ed25519/chainkd' | grep -v '/mining/tensority')
-PACKAGES += 'github.com/vapor/mining/tensority/go_algorithm'
 
 BUILD_FLAGS := -ldflags "-X github.com/vapor/version.GitCommit=`git rev-parse HEAD`"
 
@@ -134,6 +133,6 @@ benchmark:
 functional-tests:
        @go test -timeout=5m -tags="functional" ./test 
 
-ci: test functional-tests
+ci: test
 
 .PHONY: all target release-all clean test benchmark