File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ GOLDFLAGS := $(GOLDFLAGS_BASE) \
7575UNIT_TEST_SOURCES := $(sort $(shell GOPATH=$(GOPATH ) && GO111MODULE=off && go list ./... | grep -v /go-algorand/test/ ) )
7676ALGOD_API_PACKAGES := $(sort $(shell GOPATH=$(GOPATH ) && GO111MODULE=off && cd daemon/algod/api; go list ./... ) )
7777
78- MSGP_GENERATE := ./protocol ./crypto ./crypto/compactcert ./data/basics ./data/transactions ./data/committee ./data/bookkeeping ./data/hashable ./auction ./ agreement ./rpcs ./node ./ledger ./ledger/ledgercore ./compactcert
78+ MSGP_GENERATE := ./protocol ./crypto ./crypto/compactcert ./data/basics ./data/transactions ./data/committee ./data/bookkeeping ./data/hashable ./agreement ./rpcs ./node ./ledger ./ledger/ledgercore ./compactcert
7979
8080default : build
8181
Original file line number Diff line number Diff line change @@ -165,8 +165,6 @@ The following packages allow developers to interface with the Algorand system:
165165 - ` libgoal ` exports a Go interface useful for developers of Algorand clients.
166166 - ` debug ` holds secondary commands which assist developers during debugging.
167167
168- The ` auction ` package implements the Algorand auctions.
169-
170168The following packages contain tools to help Algorand developers deploy networks
171169of their own:
172170
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ TOOLS_ROOT=${PKG_ROOT}/tools
102102
103103echo " Staging tools package files"
104104
105- bin_files=(" algons" " auctionconsole " " auctionmaster " " auctionminion " " coroner" " dispenser" " netgoal" " nodecfg" " pingpong" " cc_service" " cc_agent" " cc_client" " loadgenerator" " COPYING" " dsign" )
105+ bin_files=(" algons" " coroner" " dispenser" " netgoal" " nodecfg" " pingpong" " cc_service" " cc_agent" " cc_client" " loadgenerator" " COPYING" " dsign" )
106106mkdir -p ${TOOLS_ROOT}
107107for bin in " ${bin_files[@]} " ; do
108108 cp ${GOPATHBIN} /${bin} ${TOOLS_ROOT}
111111
112112echo " Staging test util package files"
113113TEST_UTILS_ROOT=${PKG_ROOT} /test-utils
114- bin_files=(" auctionbank " " algotmpl" " COPYING" )
114+ bin_files=(" algotmpl" " COPYING" )
115115mkdir -p ${TEST_UTILS_ROOT}
116116for bin in " ${bin_files[@]} " ; do
117117 cp ${GOPATHBIN} /${bin} ${TEST_UTILS_ROOT}
You can’t perform that action at this time.
0 commit comments