Official Go implementation of the Ethereum protocol
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-ethereum/ethereum/cmd.go

36 lines
712 B

package main
import (
"io/ioutil"
"os"
10 years ago
"github.com/ethereum/eth-go"
"github.com/ethereum/go-ethereum/ethereum/repl"
"github.com/ethereum/go-ethereum/javascript"
10 years ago
"github.com/ethereum/go-ethereum/utils"
)
func InitJsConsole(ethereum *eth.Ethereum) {
repl := ethrepl.NewJSRepl(ethereum)
10 years ago
go repl.Start()
utils.RegisterInterrupt(func(os.Signal) {
repl.Stop()
})
}
10 years ago
func ExecJsFile(ethereum *eth.Ethereum, InputFile string) {
file, err := os.Open(InputFile)
if err != nil {
logger.Fatalln(err)
}
content, err := ioutil.ReadAll(file)
if err != nil {
logger.Fatalln(err)
}
re := javascript.NewJSRE(ethereum)
10 years ago
utils.RegisterInterrupt(func(os.Signal) {
re.Stop()
})
re.Run(string(content))
}