Przeglądaj źródła

cmd/geth: fixed test

Jeffrey Wilcke 10 lat temu
rodzic
commit
3016f23864
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      cmd/geth/js_test.go

+ 1 - 1
cmd/geth/js_test.go

@@ -257,7 +257,7 @@ func TestContract(t *testing.T) {
 	t.Skip("contract testing is implemented with mining in ethash test mode. This takes about 7seconds to run. Unskip and run on demand")
 	coinbase := common.HexToAddress(testAddress)
 	tmp, repl, ethereum := testREPL(t, func(conf *eth.Config) {
-		conf.Etherbase = testAddress
+		conf.Etherbase = coinbase
 		conf.PowTest = true
 	})
 	if err := ethereum.Start(); err != nil {