diff --git a/dev_console.go b/dev_console.go index b3e0d73f9f..b515b3e5c9 100644 --- a/dev_console.go +++ b/dev_console.go @@ -112,7 +112,7 @@ func (i *Console) ParseInput(input string) bool { case "encode": fmt.Printf("%q\n", ethutil.Encode(tokens[1])) case "tx": - tx := ethutil.NewTransaction(tokens[1], ethutil.Big(tokens[2]), []string{""}) + tx := ethchain.NewTransaction(tokens[1], ethutil.Big(tokens[2]), []string{""}) i.ethereum.TxPool.QueueTransaction(tx) case "exit", "quit", "q": diff --git a/ethereum.go b/ethereum.go index 7988f84184..e7775f1439 100644 --- a/ethereum.go +++ b/ethereum.go @@ -44,7 +44,7 @@ func main() { runtime.GOMAXPROCS(runtime.NumCPU()) Init() - ethutil.InitFees() + ethchain.InitFees() ethutil.ReadConfig() // Instantiated a eth stack