Skip to content

Commit 126f18b

Browse files
committed
Misc build code that references auction.
1 parent 15115e5 commit 126f18b

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ GOLDFLAGS := $(GOLDFLAGS_BASE) \
7575
UNIT_TEST_SOURCES := $(sort $(shell GOPATH=$(GOPATH) && GO111MODULE=off && go list ./... | grep -v /go-algorand/test/ ))
7676
ALGOD_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

8080
default: build
8181

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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-
170168
The following packages contain tools to help Algorand developers deploy networks
171169
of their own:
172170

scripts/build_package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ TOOLS_ROOT=${PKG_ROOT}/tools
102102

103103
echo "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")
106106
mkdir -p ${TOOLS_ROOT}
107107
for bin in "${bin_files[@]}"; do
108108
cp ${GOPATHBIN}/${bin} ${TOOLS_ROOT}
@@ -111,7 +111,7 @@ done
111111

112112
echo "Staging test util package files"
113113
TEST_UTILS_ROOT=${PKG_ROOT}/test-utils
114-
bin_files=("auctionbank" "algotmpl" "COPYING")
114+
bin_files=("algotmpl" "COPYING")
115115
mkdir -p ${TEST_UTILS_ROOT}
116116
for bin in "${bin_files[@]}"; do
117117
cp ${GOPATHBIN}/${bin} ${TEST_UTILS_ROOT}

0 commit comments

Comments
 (0)