forked from mirror/go-ethereum
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.
36 lines
721 B
36 lines
721 B
11 years ago
|
package main
|
||
|
|
||
|
import (
|
||
10 years ago
|
"io/ioutil"
|
||
|
"os"
|
||
|
|
||
10 years ago
|
"github.com/ethereum/go-ethereum"
|
||
|
"github.com/ethereum/go-ethereum/cmd/ethereum/repl"
|
||
10 years ago
|
"github.com/ethereum/go-ethereum/javascript"
|
||
11 years ago
|
"github.com/ethereum/go-ethereum/utils"
|
||
11 years ago
|
)
|
||
|
|
||
|
func InitJsConsole(ethereum *eth.Ethereum) {
|
||
10 years ago
|
repl := ethrepl.NewJSRepl(ethereum)
|
||
11 years ago
|
go repl.Start()
|
||
|
utils.RegisterInterrupt(func(os.Signal) {
|
||
|
repl.Stop()
|
||
|
})
|
||
11 years ago
|
}
|
||
|
|
||
11 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)
|
||
|
}
|
||
10 years ago
|
re := javascript.NewJSRE(ethereum)
|
||
11 years ago
|
utils.RegisterInterrupt(func(os.Signal) {
|
||
|
re.Stop()
|
||
|
})
|
||
|
re.Run(string(content))
|
||
11 years ago
|
}
|