aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum/cmd.go
blob: 08147824dcb79e64ce969c26c0f56086e5a9aa85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package main

import (
    "github.com/ethereum/eth-go"
    "github.com/ethereum/go-ethereum/utils"
    "io/ioutil"
    "os"
)

func InitJsConsole(ethereum *eth.Ethereum) {
    repl := NewJSRepl(ethereum)
    go repl.Start()
    utils.RegisterInterrupt(func(os.Signal) {
        repl.Stop()
    })
}

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 := NewJSRE(ethereum)
    utils.RegisterInterrupt(func(os.Signal) {
        re.Stop()
    })
    re.Run(string(content))
}