forked from cerc-io/plugeth
parent
f18ec51cb3
commit
9a057021c3
@ -158,8 +158,29 @@ func (gui *Gui) processBlock(block *ethchain.Block) {
|
|||||||
gui.win.Root().Call("addBlock", ethpub.NewPBlock(block))
|
gui.win.Root().Call("addBlock", ethpub.NewPBlock(block))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (gui *Gui) setWalletValue(amount, unconfirmedFunds *big.Int) {
|
||||||
|
var str string
|
||||||
|
if unconfirmedFunds != nil {
|
||||||
|
pos := "+"
|
||||||
|
if unconfirmedFunds.Cmp(big.NewInt(0)) >= 0 {
|
||||||
|
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)
|
||||||
|
}
|
||||||
|
|
||||||
// Simple go routine function that updates the list of peers in the GUI
|
// Simple go routine function that updates the list of peers in the GUI
|
||||||
func (gui *Gui) update() {
|
func (gui *Gui) update() {
|
||||||
|
blockChan := make(chan ethutil.React, 1)
|
||||||
|
reactor := gui.eth.Reactor()
|
||||||
|
|
||||||
|
reactor.Subscribe("newBlock", blockChan)
|
||||||
|
|
||||||
txChan := make(chan ethchain.TxMsg, 1)
|
txChan := make(chan ethchain.TxMsg, 1)
|
||||||
gui.eth.TxPool().Subscribe(txChan)
|
gui.eth.TxPool().Subscribe(txChan)
|
||||||
|
|
||||||
@ -170,6 +191,12 @@ func (gui *Gui) update() {
|
|||||||
|
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
|
case b := <-blockChan:
|
||||||
|
block := b.Resource.(*ethchain.Block)
|
||||||
|
if bytes.Compare(block.Coinbase, gui.addr) == 0 {
|
||||||
|
gui.setWalletValue(gui.eth.StateManager().ProcState().GetAccount(gui.addr).Amount, nil)
|
||||||
|
}
|
||||||
|
|
||||||
case txMsg := <-txChan:
|
case txMsg := <-txChan:
|
||||||
tx := txMsg.Tx
|
tx := txMsg.Tx
|
||||||
|
|
||||||
@ -191,14 +218,7 @@ func (gui *Gui) update() {
|
|||||||
unconfirmedFunds.Add(unconfirmedFunds, tx.Value)
|
unconfirmedFunds.Add(unconfirmedFunds, tx.Value)
|
||||||
}
|
}
|
||||||
|
|
||||||
pos := "+"
|
gui.setWalletValue(object.Amount, unconfirmedFunds)
|
||||||
if unconfirmedFunds.Cmp(big.NewInt(0)) >= 0 {
|
|
||||||
pos = "-"
|
|
||||||
}
|
|
||||||
val := ethutil.CurrencyToString(new(big.Int).Abs(ethutil.BigCopy(unconfirmedFunds)))
|
|
||||||
str := fmt.Sprintf("%v (%s %v)", ethutil.CurrencyToString(object.Amount), pos, val)
|
|
||||||
|
|
||||||
gui.win.Root().Call("setWalletValue", str)
|
|
||||||
} else {
|
} else {
|
||||||
object := state.GetAccount(gui.addr)
|
object := state.GetAccount(gui.addr)
|
||||||
if bytes.Compare(tx.Sender(), gui.addr) == 0 {
|
if bytes.Compare(tx.Sender(), gui.addr) == 0 {
|
||||||
@ -207,7 +227,7 @@ func (gui *Gui) update() {
|
|||||||
object.AddAmount(tx.Value)
|
object.AddAmount(tx.Value)
|
||||||
}
|
}
|
||||||
|
|
||||||
gui.win.Root().Call("setWalletValue", fmt.Sprintf("%v", ethutil.CurrencyToString(object.Amount)))
|
gui.setWalletValue(object.Amount, nil)
|
||||||
|
|
||||||
state.SetStateObject(object)
|
state.SetStateObject(object)
|
||||||
}
|
}
|
||||||
|
@ -66,10 +66,9 @@ func main() {
|
|||||||
log.SetOutput(logfile)
|
log.SetOutput(logfile)
|
||||||
logSys = log.New(logfile, "", flags)
|
logSys = log.New(logfile, "", flags)
|
||||||
logger.AddLogSystem(logSys)
|
logger.AddLogSystem(logSys)
|
||||||
}
|
} else {
|
||||||
/*else {
|
|
||||||
logSys = log.New(os.Stdout, "", flags)
|
logSys = log.New(os.Stdout, "", flags)
|
||||||
}*/
|
}
|
||||||
|
|
||||||
ethchain.InitFees()
|
ethchain.InitFees()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user