plugeth/cmd/ethereum/cmd.go

41 lines
1.2 KiB
Go
Raw Normal View History

2015-03-04 11:18:26 +00:00
// Copyright (c) 2013-2014, Jeffrey Wilcke. All rights reserved.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
// MA 02110-1301 USA
2014-10-23 13:48:53 +00:00
package main
import (
"io/ioutil"
"os"
2014-12-14 18:23:48 +00:00
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/javascript"
2015-03-04 11:18:26 +00:00
"github.com/ethereum/go-ethereum/xeth"
)
2014-06-26 17:41:36 +00:00
func ExecJsFile(ethereum *eth.Ethereum, InputFile string) {
file, err := os.Open(InputFile)
if err != nil {
2014-10-31 11:56:05 +00:00
clilogger.Fatalln(err)
2014-06-26 17:41:36 +00:00
}
content, err := ioutil.ReadAll(file)
if err != nil {
2014-10-31 11:56:05 +00:00
clilogger.Fatalln(err)
2014-06-26 17:41:36 +00:00
}
2015-03-04 11:18:26 +00:00
re := javascript.NewJSRE(xeth.New(ethereum))
2014-06-26 17:41:36 +00:00
re.Run(string(content))
}