all: blidly swap out glog to our log15, logs need rework
This commit is contained in:
		| @@ -34,7 +34,7 @@ import ( | ||||
| 	"github.com/ethereum/go-ethereum/core/vm" | ||||
| 	"github.com/ethereum/go-ethereum/ethdb" | ||||
| 	"github.com/ethereum/go-ethereum/event" | ||||
| 	"github.com/ethereum/go-ethereum/logger/glog" | ||||
| 	"github.com/ethereum/go-ethereum/log" | ||||
| 	"github.com/ethereum/go-ethereum/params" | ||||
| 	"github.com/ethereum/go-ethereum/rlp" | ||||
| ) | ||||
| @@ -146,14 +146,14 @@ func runBlockTests(homesteadBlock, daoForkBlock, gasPriceFork *big.Int, bt map[s | ||||
|  | ||||
| 	for name, test := range bt { | ||||
| 		if skipTest[name] /*|| name != "CallingCanonicalContractFromFork_CALLCODE"*/ { | ||||
| 			glog.Infoln("Skipping block test", name) | ||||
| 			log.Info(fmt.Sprint("Skipping block test", name)) | ||||
| 			continue | ||||
| 		} | ||||
| 		// test the block | ||||
| 		if err := runBlockTest(homesteadBlock, daoForkBlock, gasPriceFork, test); err != nil { | ||||
| 			return fmt.Errorf("%s: %v", name, err) | ||||
| 		} | ||||
| 		glog.Infoln("Block test passed: ", name) | ||||
| 		log.Info(fmt.Sprint("Block test passed: ", name)) | ||||
|  | ||||
| 	} | ||||
| 	return nil | ||||
|   | ||||
		Reference in New Issue
	
	Block a user