aboutsummaryrefslogtreecommitdiffstats
path: root/tests/transaction_test_util.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-06-12 01:06:56 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-06-19 04:20:45 +0800
commitc941a39b756783d95526a74374dd2aa4283474fa (patch)
treee6d5cc83abf8924ae06fa4a0fc429182b43a33c0 /tests/transaction_test_util.go
parent8507c867b9cca2b1d59182baea90ab2844d494a0 (diff)
downloadgo-tangerine-c941a39b756783d95526a74374dd2aa4283474fa.tar
go-tangerine-c941a39b756783d95526a74374dd2aa4283474fa.tar.gz
go-tangerine-c941a39b756783d95526a74374dd2aa4283474fa.tar.bz2
go-tangerine-c941a39b756783d95526a74374dd2aa4283474fa.tar.lz
go-tangerine-c941a39b756783d95526a74374dd2aa4283474fa.tar.xz
go-tangerine-c941a39b756783d95526a74374dd2aa4283474fa.tar.zst
go-tangerine-c941a39b756783d95526a74374dd2aa4283474fa.zip
Cleanup logging
Diffstat (limited to 'tests/transaction_test_util.go')
-rw-r--r--tests/transaction_test_util.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/transaction_test_util.go b/tests/transaction_test_util.go
index 2864257b7..ef133a99d 100644
--- a/tests/transaction_test_util.go
+++ b/tests/transaction_test_util.go
@@ -8,6 +8,7 @@ import (
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
+ "github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/rlp"
)
@@ -44,14 +45,14 @@ func RunTransactionTests(file string) error {
for name, test := range bt {
// if the test should be skipped, return
if skipTest[name] {
- fmt.Println("Skipping state test", name)
+ glog.Infoln("Skipping transaction test", name)
return nil
}
// test the block
if err := runTest(test); err != nil {
return err
}
- fmt.Println("Transaction test passed: ", name)
+ glog.Infoln("Transaction test passed: ", name)
}
return nil