2014-02-21 11:37:40 +00:00
|
|
|
package ethui
|
|
|
|
|
|
|
|
import (
|
2014-02-25 09:54:37 +00:00
|
|
|
"bytes"
|
2014-02-21 11:37:40 +00:00
|
|
|
"fmt"
|
|
|
|
"github.com/ethereum/eth-go"
|
|
|
|
"github.com/ethereum/eth-go/ethchain"
|
2014-02-25 09:54:37 +00:00
|
|
|
"github.com/ethereum/eth-go/ethdb"
|
2014-05-02 11:55:58 +00:00
|
|
|
"github.com/ethereum/eth-go/ethpub"
|
2014-02-21 11:37:40 +00:00
|
|
|
"github.com/ethereum/eth-go/ethutil"
|
2014-05-30 11:28:31 +00:00
|
|
|
"github.com/ethereum/go-ethereum/utils"
|
2014-04-23 22:01:22 +00:00
|
|
|
"github.com/go-qml/qml"
|
2014-02-28 11:16:46 +00:00
|
|
|
"math/big"
|
2014-02-21 11:37:40 +00:00
|
|
|
"strings"
|
2014-06-02 13:16:37 +00:00
|
|
|
"time"
|
2014-02-21 11:37:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Gui struct {
|
2014-02-22 22:19:38 +00:00
|
|
|
// The main application window
|
|
|
|
win *qml.Window
|
|
|
|
// QML Engine
|
2014-02-21 11:37:40 +00:00
|
|
|
engine *qml.Engine
|
|
|
|
component *qml.Common
|
2014-02-22 22:19:38 +00:00
|
|
|
// The ethereum interface
|
|
|
|
eth *eth.Ethereum
|
2014-02-21 16:29:59 +00:00
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// The public Ethereum library
|
2014-05-12 11:56:29 +00:00
|
|
|
lib *EthLib
|
|
|
|
uiLib *UiLib
|
2014-02-25 09:54:37 +00:00
|
|
|
|
|
|
|
txDb *ethdb.LDBDatabase
|
|
|
|
|
|
|
|
addr []byte
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
pub *ethpub.PEthereum
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Create GUI, but doesn't start it
|
2014-02-21 11:37:40 +00:00
|
|
|
func New(ethereum *eth.Ethereum) *Gui {
|
2014-03-05 09:57:14 +00:00
|
|
|
lib := &EthLib{stateManager: ethereum.StateManager(), blockChain: ethereum.BlockChain(), txPool: ethereum.TxPool()}
|
2014-02-25 09:54:37 +00:00
|
|
|
db, err := ethdb.NewLDBDatabase("tx_database")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2014-02-21 16:29:59 +00:00
|
|
|
|
2014-04-10 18:53:12 +00:00
|
|
|
// On first run we won't have any keys yet, so this would crash.
|
|
|
|
// Therefor we check if we are ready to actually start this process
|
|
|
|
var addr []byte
|
2014-05-14 11:55:08 +00:00
|
|
|
if ethutil.GetKeyRing().Len() != 0 {
|
|
|
|
addr = ethutil.GetKeyRing().Get(0).Address()
|
2014-04-10 18:53:12 +00:00
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2014-05-13 10:42:01 +00:00
|
|
|
pub := ethpub.NewPEthereum(ethereum)
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
return &Gui{eth: ethereum, lib: lib, txDb: db, addr: addr, pub: pub}
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) Start(assetPath string) {
|
2014-05-28 14:17:57 +00:00
|
|
|
const version = "0.5.0 RC11"
|
2014-05-14 19:34:01 +00:00
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
defer gui.txDb.Close()
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Register ethereum functions
|
|
|
|
qml.RegisterTypes("Ethereum", 1, 0, []qml.TypeSpec{{
|
2014-05-02 11:55:58 +00:00
|
|
|
Init: func(p *ethpub.PBlock, obj qml.Object) { p.Number = 0; p.Hash = "" },
|
2014-02-23 00:56:04 +00:00
|
|
|
}, {
|
2014-05-02 11:55:58 +00:00
|
|
|
Init: func(p *ethpub.PTx, obj qml.Object) { p.Value = ""; p.Hash = ""; p.Address = "" },
|
2014-02-21 11:37:40 +00:00
|
|
|
}})
|
|
|
|
|
2014-05-14 19:34:01 +00:00
|
|
|
ethutil.Config.SetClientString(fmt.Sprintf("/Ethereal v%s", version))
|
2014-05-30 17:36:05 +00:00
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Create a new QML engine
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.engine = qml.NewEngine()
|
|
|
|
context := gui.engine.Context()
|
2014-03-05 09:44:33 +00:00
|
|
|
|
|
|
|
// Expose the eth library and the ui library to QML
|
2014-05-08 16:24:28 +00:00
|
|
|
context.SetVar("eth", gui)
|
2014-05-21 12:00:54 +00:00
|
|
|
context.SetVar("pub", gui.pub)
|
2014-05-12 11:56:29 +00:00
|
|
|
gui.uiLib = NewUiLib(gui.engine, gui.eth, assetPath)
|
|
|
|
context.SetVar("ui", gui.uiLib)
|
2014-02-28 15:41:30 +00:00
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Load the main QML interface
|
2014-04-10 18:53:12 +00:00
|
|
|
data, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
|
2014-05-12 11:56:29 +00:00
|
|
|
|
|
|
|
var win *qml.Window
|
2014-04-10 18:53:12 +00:00
|
|
|
var err error
|
2014-05-12 11:56:29 +00:00
|
|
|
if len(data) == 0 {
|
|
|
|
win, err = gui.showKeyImport(context)
|
2014-04-10 18:53:12 +00:00
|
|
|
} else {
|
2014-05-12 11:56:29 +00:00
|
|
|
win, err = gui.showWallet(context)
|
2014-05-31 09:34:37 +00:00
|
|
|
|
|
|
|
ethutil.Config.Log.AddLogSystem(gui)
|
2014-04-10 18:53:12 +00:00
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
if err != nil {
|
2014-06-02 13:16:37 +00:00
|
|
|
ethutil.Config.Log.Infoln("FATAL: asset not found: you can set an alternative asset path on on the command line using option 'asset_path'", err)
|
2014-04-23 09:51:48 +00:00
|
|
|
|
2014-02-21 11:37:40 +00:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2014-05-29 10:24:14 +00:00
|
|
|
ethutil.Config.Log.Infoln("[GUI] Starting GUI")
|
|
|
|
|
2014-05-31 09:34:37 +00:00
|
|
|
win.Show()
|
2014-05-12 11:56:29 +00:00
|
|
|
win.Wait()
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
gui.eth.Stop()
|
|
|
|
}
|
2014-02-22 00:52:47 +00:00
|
|
|
|
2014-05-30 11:28:31 +00:00
|
|
|
func (gui *Gui) ToggleMining() {
|
|
|
|
var txt string
|
|
|
|
if gui.eth.Mining {
|
|
|
|
utils.StopMining(gui.eth)
|
|
|
|
txt = "Start mining"
|
|
|
|
} else {
|
|
|
|
utils.StartMining(gui.eth)
|
|
|
|
txt = "Stop mining"
|
|
|
|
}
|
|
|
|
|
|
|
|
gui.win.Root().Set("miningButtonText", txt)
|
|
|
|
}
|
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
func (gui *Gui) showWallet(context *qml.Context) (*qml.Window, error) {
|
|
|
|
component, err := gui.engine.LoadFile(gui.uiLib.AssetPath("qml/wallet.qml"))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-04-10 18:53:12 +00:00
|
|
|
}
|
2014-02-21 11:37:40 +00:00
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
win := gui.createWindow(component)
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-05-30 11:04:23 +00:00
|
|
|
gui.setInitialBlockChain()
|
|
|
|
gui.loadAddressBook()
|
|
|
|
gui.readPreviousTransactions()
|
|
|
|
gui.setPeerInfo()
|
|
|
|
|
2014-05-12 11:56:29 +00:00
|
|
|
go gui.update()
|
|
|
|
|
|
|
|
return win, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) showKeyImport(context *qml.Context) (*qml.Window, error) {
|
|
|
|
context.SetVar("lib", gui.lib)
|
|
|
|
component, err := gui.engine.LoadFile(gui.uiLib.AssetPath("qml/first_run.qml"))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return gui.createWindow(component), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) createWindow(comp qml.Object) *qml.Window {
|
|
|
|
win := comp.CreateWindow(nil)
|
|
|
|
|
|
|
|
gui.win = win
|
|
|
|
gui.uiLib.win = win
|
|
|
|
|
2014-05-27 11:28:11 +00:00
|
|
|
db := &Debugger{gui.win, make(chan bool), make(chan bool), true}
|
2014-05-12 11:56:29 +00:00
|
|
|
gui.lib.Db = db
|
|
|
|
gui.uiLib.Db = db
|
|
|
|
|
|
|
|
return gui.win
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) setInitialBlockChain() {
|
2014-05-27 08:29:39 +00:00
|
|
|
sBlk := gui.eth.BlockChain().LastBlockHash
|
2014-05-26 15:07:20 +00:00
|
|
|
blk := gui.eth.BlockChain().GetBlock(sBlk)
|
2014-05-27 08:29:39 +00:00
|
|
|
for ; blk != nil; blk = gui.eth.BlockChain().GetBlock(sBlk) {
|
|
|
|
sBlk = blk.PrevHash
|
2014-06-03 09:48:44 +00:00
|
|
|
|
|
|
|
// Loop through all transactions to see if we missed any while being offline
|
|
|
|
for _, tx := range blk.Transactions() {
|
|
|
|
if bytes.Compare(tx.Sender(), gui.addr) == 0 || bytes.Compare(tx.Recipient, gui.addr) == 0 {
|
|
|
|
if ok, _ := gui.txDb.Get(tx.Hash()); ok == nil {
|
|
|
|
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-27 09:49:42 +00:00
|
|
|
gui.processBlock(blk, true)
|
2014-02-21 12:06:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-30 09:50:30 +00:00
|
|
|
type address struct {
|
|
|
|
Name, Address string
|
|
|
|
}
|
|
|
|
|
|
|
|
var namereg = ethutil.FromHex("bb5f186604d057c1c5240ca2ae0f6430138ac010")
|
|
|
|
|
|
|
|
func (gui *Gui) loadAddressBook() {
|
|
|
|
gui.win.Root().Call("clearAddress")
|
2014-05-31 09:34:37 +00:00
|
|
|
stateObject := gui.eth.StateManager().CurrentState().GetStateObject(namereg)
|
|
|
|
if stateObject != nil {
|
|
|
|
stateObject.State().EachStorage(func(name string, value *ethutil.Value) {
|
|
|
|
gui.win.Root().Call("addAddress", struct{ Name, Address string }{name, ethutil.Hex(value.Bytes())})
|
|
|
|
})
|
|
|
|
}
|
2014-05-30 09:50:30 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) readPreviousTransactions() {
|
|
|
|
it := gui.txDb.Db().NewIterator(nil, nil)
|
2014-02-25 09:54:37 +00:00
|
|
|
for it.Next() {
|
|
|
|
tx := ethchain.NewTransactionFromBytes(it.Value())
|
|
|
|
|
2014-05-25 22:10:38 +00:00
|
|
|
var inout string
|
|
|
|
if bytes.Compare(tx.Sender(), gui.addr) == 0 {
|
|
|
|
inout = "send"
|
|
|
|
} else {
|
|
|
|
inout = "recv"
|
|
|
|
}
|
|
|
|
|
|
|
|
gui.win.Root().Call("addTx", ethpub.NewPTx(tx), inout)
|
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
|
|
|
it.Release()
|
|
|
|
}
|
|
|
|
|
2014-05-27 09:49:42 +00:00
|
|
|
func (gui *Gui) processBlock(block *ethchain.Block, initial bool) {
|
|
|
|
gui.win.Root().Call("addBlock", ethpub.NewPBlock(block), initial)
|
2014-02-21 11:37:40 +00:00
|
|
|
}
|
|
|
|
|
2014-05-14 12:57:05 +00:00
|
|
|
func (gui *Gui) setWalletValue(amount, unconfirmedFunds *big.Int) {
|
|
|
|
var str string
|
|
|
|
if unconfirmedFunds != nil {
|
|
|
|
pos := "+"
|
2014-05-21 11:37:46 +00:00
|
|
|
if unconfirmedFunds.Cmp(big.NewInt(0)) < 0 {
|
2014-05-14 12:57:05 +00:00
|
|
|
pos = "-"
|
|
|
|
}
|
|
|
|
val := ethutil.CurrencyToString(new(big.Int).Abs(ethutil.BigCopy(unconfirmedFunds)))
|
|
|
|
str = fmt.Sprintf("%v (%s %v)", ethutil.CurrencyToString(amount), pos, val)
|
|
|
|
} else {
|
|
|
|
str = fmt.Sprintf("%v", ethutil.CurrencyToString(amount))
|
|
|
|
}
|
|
|
|
|
|
|
|
gui.win.Root().Call("setWalletValue", str)
|
|
|
|
}
|
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
// Simple go routine function that updates the list of peers in the GUI
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) update() {
|
2014-05-14 12:57:05 +00:00
|
|
|
reactor := gui.eth.Reactor()
|
|
|
|
|
2014-05-15 12:06:06 +00:00
|
|
|
blockChan := make(chan ethutil.React, 1)
|
|
|
|
txChan := make(chan ethutil.React, 1)
|
2014-05-30 09:50:30 +00:00
|
|
|
objectChan := make(chan ethutil.React, 1)
|
2014-05-30 11:04:23 +00:00
|
|
|
peerChan := make(chan ethutil.React, 1)
|
2014-05-14 12:57:05 +00:00
|
|
|
|
2014-05-15 12:06:06 +00:00
|
|
|
reactor.Subscribe("newBlock", blockChan)
|
|
|
|
reactor.Subscribe("newTx:pre", txChan)
|
|
|
|
reactor.Subscribe("newTx:post", txChan)
|
2014-05-30 09:50:30 +00:00
|
|
|
reactor.Subscribe("object:"+string(namereg), objectChan)
|
2014-05-30 11:04:23 +00:00
|
|
|
reactor.Subscribe("peerList", peerChan)
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-06-02 13:16:37 +00:00
|
|
|
ticker := time.NewTicker(5 * time.Second)
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
state := gui.eth.StateManager().TransState()
|
2014-04-30 15:13:12 +00:00
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
unconfirmedFunds := new(big.Int)
|
2014-05-13 09:59:03 +00:00
|
|
|
gui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", ethutil.CurrencyToString(state.GetAccount(gui.addr).Amount)))
|
2014-04-30 15:13:12 +00:00
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
for {
|
|
|
|
select {
|
2014-05-14 12:57:05 +00:00
|
|
|
case b := <-blockChan:
|
|
|
|
block := b.Resource.(*ethchain.Block)
|
2014-05-27 09:49:42 +00:00
|
|
|
gui.processBlock(block, false)
|
2014-05-14 12:57:05 +00:00
|
|
|
if bytes.Compare(block.Coinbase, gui.addr) == 0 {
|
2014-05-17 13:15:46 +00:00
|
|
|
gui.setWalletValue(gui.eth.StateManager().CurrentState().GetAccount(gui.addr).Amount, nil)
|
2014-05-14 12:57:05 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 09:54:37 +00:00
|
|
|
case txMsg := <-txChan:
|
2014-05-15 12:06:06 +00:00
|
|
|
tx := txMsg.Resource.(*ethchain.Transaction)
|
2014-02-25 09:54:37 +00:00
|
|
|
|
2014-05-15 12:06:06 +00:00
|
|
|
if txMsg.Event == "newTx:pre" {
|
2014-05-13 09:59:03 +00:00
|
|
|
object := state.GetAccount(gui.addr)
|
2014-05-08 16:24:28 +00:00
|
|
|
|
2014-05-21 11:37:46 +00:00
|
|
|
if bytes.Compare(tx.Sender(), gui.addr) == 0 {
|
2014-05-25 22:10:38 +00:00
|
|
|
gui.win.Root().Call("addTx", ethpub.NewPTx(tx), "send")
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
|
|
|
|
|
2014-02-28 11:16:46 +00:00
|
|
|
unconfirmedFunds.Sub(unconfirmedFunds, tx.Value)
|
2014-05-08 16:24:28 +00:00
|
|
|
} else if bytes.Compare(tx.Recipient, gui.addr) == 0 {
|
2014-05-25 22:10:38 +00:00
|
|
|
gui.win.Root().Call("addTx", ethpub.NewPTx(tx), "recv")
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.txDb.Put(tx.Hash(), tx.RlpEncode())
|
2014-02-28 11:16:46 +00:00
|
|
|
|
|
|
|
unconfirmedFunds.Add(unconfirmedFunds, tx.Value)
|
|
|
|
}
|
|
|
|
|
2014-05-14 12:57:05 +00:00
|
|
|
gui.setWalletValue(object.Amount, unconfirmedFunds)
|
2014-02-25 09:54:37 +00:00
|
|
|
} else {
|
2014-05-13 09:59:03 +00:00
|
|
|
object := state.GetAccount(gui.addr)
|
2014-05-08 16:24:28 +00:00
|
|
|
if bytes.Compare(tx.Sender(), gui.addr) == 0 {
|
|
|
|
object.SubAmount(tx.Value)
|
|
|
|
} else if bytes.Compare(tx.Recipient, gui.addr) == 0 {
|
|
|
|
object.AddAmount(tx.Value)
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
2014-02-28 11:16:46 +00:00
|
|
|
|
2014-05-14 12:57:05 +00:00
|
|
|
gui.setWalletValue(object.Amount, nil)
|
2014-05-08 16:24:28 +00:00
|
|
|
|
2014-05-21 10:14:39 +00:00
|
|
|
state.UpdateStateObject(object)
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
2014-05-30 09:50:30 +00:00
|
|
|
case <-objectChan:
|
|
|
|
gui.loadAddressBook()
|
2014-05-30 11:04:23 +00:00
|
|
|
case <-peerChan:
|
|
|
|
gui.setPeerInfo()
|
2014-06-02 13:16:37 +00:00
|
|
|
case <-ticker.C:
|
|
|
|
gui.setPeerInfo()
|
2014-02-25 09:54:37 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-23 00:56:04 +00:00
|
|
|
}
|
|
|
|
|
2014-05-30 11:04:23 +00:00
|
|
|
func (gui *Gui) setPeerInfo() {
|
|
|
|
gui.win.Root().Call("setPeers", fmt.Sprintf("%d / %d", gui.eth.PeerCount(), gui.eth.MaxPeers))
|
2014-06-02 13:16:37 +00:00
|
|
|
|
|
|
|
gui.win.Root().Call("resetPeers")
|
|
|
|
for _, peer := range gui.pub.GetPeers() {
|
|
|
|
gui.win.Root().Call("addPeer", peer)
|
|
|
|
}
|
2014-05-30 11:04:23 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 22:19:38 +00:00
|
|
|
// Logging functions that log directly to the GUI interface
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) Println(v ...interface{}) {
|
2014-02-22 22:19:38 +00:00
|
|
|
str := strings.TrimRight(fmt.Sprintln(v...), "\n")
|
|
|
|
lines := strings.Split(str, "\n")
|
|
|
|
for _, line := range lines {
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.win.Root().Call("addLog", line)
|
2014-02-22 22:19:38 +00:00
|
|
|
}
|
2014-02-22 00:52:47 +00:00
|
|
|
}
|
|
|
|
|
2014-05-08 16:24:28 +00:00
|
|
|
func (gui *Gui) Printf(format string, v ...interface{}) {
|
2014-02-22 00:52:47 +00:00
|
|
|
str := strings.TrimRight(fmt.Sprintf(format, v...), "\n")
|
2014-02-22 22:19:38 +00:00
|
|
|
lines := strings.Split(str, "\n")
|
|
|
|
for _, line := range lines {
|
2014-05-08 16:24:28 +00:00
|
|
|
gui.win.Root().Call("addLog", line)
|
2014-02-22 22:19:38 +00:00
|
|
|
}
|
2014-02-22 00:52:47 +00:00
|
|
|
}
|
2014-06-03 12:30:26 +00:00
|
|
|
func (gui *Gui) RegisterName(name string) {
|
|
|
|
keyPair := ethutil.GetKeyRing().Get(0)
|
|
|
|
name = fmt.Sprintf("\"%s\"\n1", name)
|
|
|
|
gui.pub.Transact(ethutil.Hex(keyPair.PrivateKey), "namereg", "1000", "1000000", "150", name)
|
|
|
|
}
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
func (gui *Gui) Transact(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) {
|
2014-05-14 11:55:08 +00:00
|
|
|
keyPair := ethutil.GetKeyRing().Get(0)
|
2014-05-08 16:24:28 +00:00
|
|
|
|
|
|
|
return gui.pub.Transact(ethutil.Hex(keyPair.PrivateKey), recipient, value, gas, gasPrice, data)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) Create(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) {
|
2014-05-14 11:55:08 +00:00
|
|
|
keyPair := ethutil.GetKeyRing().Get(0)
|
2014-05-09 23:57:10 +00:00
|
|
|
|
2014-05-28 21:14:23 +00:00
|
|
|
return gui.pub.Transact(ethutil.Hex(keyPair.PrivateKey), recipient, value, gas, gasPrice, data)
|
2014-05-08 16:24:28 +00:00
|
|
|
}
|
2014-05-30 17:36:05 +00:00
|
|
|
|
|
|
|
func (gui *Gui) ChangeClientId(id string) {
|
|
|
|
ethutil.Config.SetIdentifier(id)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gui *Gui) ClientId() string {
|
|
|
|
return ethutil.Config.Identifier
|
|
|
|
}
|