aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-05 21:56:05 +0800
committerobscuren <geffobscura@gmail.com>2014-05-05 21:56:05 +0800
commita77dcd10414e94fbd255931b0a539bbfefd91f56 (patch)
tree5c804987152d89c4915a433bb79fcb7b95c6364c /ethereum
parent1323f60c074297c97397d20dd275124da2f5b531 (diff)
parent70221c36e381e98bf3e92913f48fb94d18da8ef5 (diff)
downloaddexon-a77dcd10414e94fbd255931b0a539bbfefd91f56.tar
dexon-a77dcd10414e94fbd255931b0a539bbfefd91f56.tar.gz
dexon-a77dcd10414e94fbd255931b0a539bbfefd91f56.tar.bz2
dexon-a77dcd10414e94fbd255931b0a539bbfefd91f56.tar.lz
dexon-a77dcd10414e94fbd255931b0a539bbfefd91f56.tar.xz
dexon-a77dcd10414e94fbd255931b0a539bbfefd91f56.tar.zst
dexon-a77dcd10414e94fbd255931b0a539bbfefd91f56.zip
Merge branch 'release/poc5-rc1'
Diffstat (limited to 'ethereum')
-rw-r--r--ethereum/config.go8
-rw-r--r--ethereum/dev_console.go42
-rw-r--r--ethereum/ethereum.go159
3 files changed, 115 insertions, 94 deletions
diff --git a/ethereum/config.go b/ethereum/config.go
index e4935dfed..234e79f12 100644
--- a/ethereum/config.go
+++ b/ethereum/config.go
@@ -6,6 +6,7 @@ import (
var StartConsole bool
var StartMining bool
+var StartRpc bool
var UseUPnP bool
var OutboundPort string
var ShowGenesis bool
@@ -15,20 +16,23 @@ var GenAddr bool
var UseSeed bool
var ImportKey string
var ExportKey bool
-
-//var UseGui bool
+var LogFile string
var DataDir string
+var NonInteractive bool
func Init() {
flag.BoolVar(&StartConsole, "c", false, "debug and testing console")
flag.BoolVar(&StartMining, "m", false, "start dagger mining")
flag.BoolVar(&ShowGenesis, "g", false, "prints genesis header and exits")
//flag.BoolVar(&UseGui, "gui", true, "use the gui")
+ flag.BoolVar(&StartRpc, "r", false, "start rpc server")
+ flag.BoolVar(&NonInteractive, "y", false, "non-interactive mode (say yes to confirmations)")
flag.BoolVar(&UseUPnP, "upnp", false, "enable UPnP support")
flag.BoolVar(&UseSeed, "seed", true, "seed peers")
flag.BoolVar(&GenAddr, "genaddr", false, "create a new priv/pub key")
flag.BoolVar(&ExportKey, "export", false, "export private key")
flag.StringVar(&OutboundPort, "p", "30303", "listening port")
+ flag.StringVar(&LogFile, "logfile", "", "log file (defaults to standard output)")
flag.StringVar(&DataDir, "dir", ".ethereum", "ethereum data directory")
flag.StringVar(&ImportKey, "import", "", "imports the given private key (hex)")
flag.IntVar(&MaxPeer, "x", 5, "maximum desired peers")
diff --git a/ethereum/dev_console.go b/ethereum/dev_console.go
index ead4b55e5..d2be43205 100644
--- a/ethereum/dev_console.go
+++ b/ethereum/dev_console.go
@@ -11,7 +11,8 @@ import (
"github.com/ethereum/eth-go/ethdb"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethwire"
- _ "math/big"
+ "github.com/ethereum/go-ethereum/utils"
+ "github.com/obscuren/mutan"
"os"
"strings"
)
@@ -52,15 +53,15 @@ func (i *Console) ValidateInput(action string, argumentLength int) error {
case action == "gettx" && argumentLength != 1:
err = true
expArgCount = 1
- case action == "tx" && argumentLength != 2:
+ case action == "tx" && argumentLength != 4:
err = true
- expArgCount = 2
+ expArgCount = 4
case action == "getaddr" && argumentLength != 1:
err = true
expArgCount = 1
- case action == "contract" && argumentLength != 1:
+ case action == "contract" && argumentLength != 2:
err = true
- expArgCount = 1
+ expArgCount = 2
case action == "say" && argumentLength != 1:
err = true
expArgCount = 1
@@ -79,7 +80,7 @@ func (i *Console) ValidateInput(action string, argumentLength int) error {
}
}
-func (i *Console) Editor() []string {
+func (i *Console) Editor() string {
var buff bytes.Buffer
for {
reader := bufio.NewReader(os.Stdin)
@@ -94,15 +95,7 @@ func (i *Console) Editor() []string {
}
}
- scanner := bufio.NewScanner(strings.NewReader(buff.String()))
- scanner.Split(bufio.ScanLines)
-
- var lines []string
- for scanner.Scan() {
- lines = append(lines, scanner.Text())
- }
-
- return lines
+ return buff.String()
}
func (i *Console) PrintRoot() {
@@ -178,7 +171,7 @@ func (i *Console) ParseInput(input string) bool {
if err != nil {
fmt.Println("recipient err:", err)
} else {
- tx := ethchain.NewTransaction(recipient, ethutil.Big(tokens[2]), []string{""})
+ tx := ethchain.NewTransactionMessage(recipient, ethutil.Big(tokens[2]), ethutil.Big(tokens[3]), ethutil.Big(tokens[4]), nil)
key := ethutil.Config.Db.GetKeys()[0]
tx.Sign(key.PrivateKey)
@@ -197,9 +190,22 @@ func (i *Console) ParseInput(input string) bool {
}
case "contract":
fmt.Println("Contract editor (Ctrl-D = done)")
- code := ethchain.Compile(i.Editor())
- contract := ethchain.NewTransaction(ethchain.ContractAddr, ethutil.Big(tokens[1]), code)
+ mainInput, initInput := mutan.PreProcess(i.Editor())
+ mainScript, err := utils.Compile(mainInput)
+ if err != nil {
+ fmt.Println(err)
+
+ break
+ }
+ initScript, err := utils.Compile(initInput)
+ if err != nil {
+ fmt.Println(err)
+
+ break
+ }
+
+ contract := ethchain.NewContractCreationTx(ethutil.Big(tokens[0]), ethutil.Big(tokens[1]), ethutil.Big(tokens[1]), mainScript, initScript)
key := ethutil.Config.Db.GetKeys()[0]
contract.Sign(key.PrivateKey)
diff --git a/ethereum/ethereum.go b/ethereum/ethereum.go
index 3f5e4a8f5..8719f3e87 100644
--- a/ethereum/ethereum.go
+++ b/ethereum/ethereum.go
@@ -4,19 +4,22 @@ import (
"fmt"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethchain"
+ "github.com/ethereum/eth-go/ethminer"
+ "github.com/ethereum/eth-go/ethpub"
+ "github.com/ethereum/eth-go/ethrpc"
"github.com/ethereum/eth-go/ethutil"
- "github.com/ethereum/eth-go/ethwire"
"github.com/ethereum/go-ethereum/utils"
"log"
"os"
"os/signal"
"runtime"
+ "strings"
)
const Debug = true
// Register interrupt handlers so we can stop the ethereum
-func RegisterInterupts(s *eth.Ethereum) {
+func RegisterInterrupts(s *eth.Ethereum) {
// Buffered chan of one is enough
c := make(chan os.Signal, 1)
// Notify about interrupts for now
@@ -24,19 +27,52 @@ func RegisterInterupts(s *eth.Ethereum) {
go func() {
for sig := range c {
fmt.Printf("Shutting down (%v) ... \n", sig)
-
s.Stop()
}
}()
}
+func confirm(message string) bool {
+ fmt.Println(message, "Are you sure? (y/n)")
+ var r string
+ fmt.Scanln(&r)
+ for ; ; fmt.Scanln(&r) {
+ if r == "n" || r == "y" {
+ break
+ } else {
+ fmt.Printf("Yes or no?", r)
+ }
+ }
+ return r == "y"
+}
+
func main() {
Init()
runtime.GOMAXPROCS(runtime.NumCPU())
- ethchain.InitFees()
+ // set logger
+ var logSys *log.Logger
+ flags := log.LstdFlags
+
ethutil.ReadConfig(DataDir)
+ logger := ethutil.Config.Log
+
+ if LogFile != "" {
+ logfile, err := os.OpenFile(LogFile, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
+ if err != nil {
+ panic(fmt.Sprintf("error opening log file '%s': %v", LogFile, err))
+ }
+ defer logfile.Close()
+ log.SetOutput(logfile)
+ logSys = log.New(logfile, "", flags)
+ logger.AddLogSystem(logSys)
+ }
+ /*else {
+ logSys = log.New(os.Stdout, "", flags)
+ }*/
+
+ ethchain.InitFees()
ethutil.Config.Seed = UseSeed
// Instantiated a eth stack
@@ -47,57 +83,42 @@ func main() {
}
ethereum.Port = OutboundPort
- if GenAddr {
- fmt.Println("This action overwrites your old private key. Are you sure? (y/n)")
-
- var r string
- fmt.Scanln(&r)
- for ; ; fmt.Scanln(&r) {
- if r == "n" || r == "y" {
- break
- } else {
- fmt.Printf("Yes or no?", r)
- }
- }
-
- if r == "y" {
+ // bookkeeping tasks
+ switch {
+ case GenAddr:
+ if NonInteractive || confirm("This action overwrites your old private key.") {
utils.CreateKeyPair(true)
}
os.Exit(0)
- } else {
- if len(ImportKey) > 0 {
- fmt.Println("This action overwrites your old private key. Are you sure? (y/n)")
- var r string
- fmt.Scanln(&r)
- for ; ; fmt.Scanln(&r) {
- if r == "n" || r == "y" {
- break
- } else {
- fmt.Printf("Yes or no?", r)
- }
- }
-
- if r == "y" {
+ case len(ImportKey) > 0:
+ if NonInteractive || confirm("This action overwrites your old private key.") {
+ mnemonic := strings.Split(ImportKey, " ")
+ if len(mnemonic) == 24 {
+ logSys.Println("Got mnemonic key, importing.")
+ key := ethutil.MnemonicDecode(mnemonic)
+ utils.ImportPrivateKey(key)
+ } else if len(mnemonic) == 1 {
+ logSys.Println("Got hex key, importing.")
utils.ImportPrivateKey(ImportKey)
- os.Exit(0)
+ } else {
+ logSys.Println("Did not recognise format, exiting.")
}
- } else {
- utils.CreateKeyPair(false)
}
- }
-
- if ExportKey {
+ os.Exit(0)
+ case ExportKey:
key := ethutil.Config.Db.GetKeys()[0]
- fmt.Printf("%x\n", key.PrivateKey)
+ logSys.Println(fmt.Sprintf("prvk: %x\n", key.PrivateKey))
os.Exit(0)
- }
-
- if ShowGenesis {
- fmt.Println(ethereum.BlockChain().Genesis())
+ case ShowGenesis:
+ logSys.Println(ethereum.BlockChain().Genesis())
os.Exit(0)
+ default:
+ // Creates a keypair if non exists
+ utils.CreateKeyPair(false)
}
- log.Printf("Starting Ethereum v%s\n", ethutil.Config.Ver)
+ // client
+ logger.Infoln(fmt.Sprintf("Starting Ethereum v%s", ethutil.Config.Ver))
// Set the max peers
ethereum.MaxPeers = MaxPeer
@@ -112,45 +133,35 @@ func main() {
console := NewConsole(ethereum)
go console.Start()
}
+ if StartRpc {
+ ethereum.RpcServer = ethrpc.NewJsonRpcServer(ethpub.NewPEthereum(ethereum.StateManager(), ethereum.BlockChain(), ethereum.TxPool()))
+ go ethereum.RpcServer.Start()
+ }
- RegisterInterupts(ethereum)
+ RegisterInterrupts(ethereum)
ethereum.Start()
if StartMining {
- log.Printf("Miner started\n")
+ logger.Infoln("Miner started")
// Fake block mining. It broadcasts a new block every 5 seconds
go func() {
- pow := &ethchain.EasyPow{}
- data, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
- keyRing := ethutil.NewValueFromBytes(data)
- addr := keyRing.Get(1).Bytes()
-
- for {
- txs := ethereum.TxPool().Flush()
- // Create a new block which we're going to mine
- block := ethereum.BlockChain().NewBlock(addr, txs)
- log.Println("Mining on new block. Includes", len(block.Transactions()), "transactions")
- // Apply all transactions to the block
- ethereum.StateManager().ApplyTransactions(block, block.Transactions())
-
- ethereum.StateManager().Prepare(block.State(), block.State())
- ethereum.StateManager().AccumelateRewards(block)
-
- // Search the nonce
- block.Nonce = pow.Search(block)
- ethereum.Broadcast(ethwire.MsgBlockTy, []interface{}{block.Value().Val})
-
- ethereum.StateManager().PrepareDefault(block)
- err := ethereum.StateManager().ProcessBlock(block)
- if err != nil {
- log.Println(err)
- } else {
- log.Println("\n+++++++ MINED BLK +++++++\n", ethereum.BlockChain().CurrentBlock)
- log.Printf("🔨 Mined block %x\n", block.Hash())
- }
+
+ if StartMining {
+ logger.Infoln("Miner started")
+
+ go func() {
+ data, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
+ keyRing := ethutil.NewValueFromBytes(data)
+ addr := keyRing.Get(1).Bytes()
+
+ miner := ethminer.NewDefaultMiner(addr, ethereum)
+ miner.Start()
+
+ }()
}
}()
+
}
// Wait for shutdown