From d6f75370a1a7595c54b75d85c8495166d09df361 Mon Sep 17 00:00:00 2001 From: Jae Kwon Date: Wed, 13 Apr 2016 15:05:07 -0700 Subject: [PATCH] Disable scripts/* building with build tags --- scripts/print_test_account.go | 2 ++ scripts/print_txs.go | 2 ++ tests/tmsp/main.go | 5 ++++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/scripts/print_test_account.go b/scripts/print_test_account.go index a2f64ce7d6..11998c6639 100644 --- a/scripts/print_test_account.go +++ b/scripts/print_test_account.go @@ -1,3 +1,5 @@ +// +build scripts + package main import ( diff --git a/scripts/print_txs.go b/scripts/print_txs.go index 00da641830..d7570a0bd6 100644 --- a/scripts/print_txs.go +++ b/scripts/print_txs.go @@ -1,3 +1,5 @@ +// +build scripts + package main import ( diff --git a/tests/tmsp/main.go b/tests/tmsp/main.go index e2072367d7..f6495fcc6d 100644 --- a/tests/tmsp/main.go +++ b/tests/tmsp/main.go @@ -86,7 +86,10 @@ func testGov() { if log != "Success" { Exit(Fmt("Failed to set option: %v", log)) } - // TODO test proposals or something. + + // Call InitChain to initialize the validator set + + // TODO more tests... } func testSequence() {