aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-10 22:22:57 +0800
committerobscuren <geffobscura@gmail.com>2014-05-10 22:22:57 +0800
commit23fc50c61b99735263eb682eb992c174eceea632 (patch)
tree1f72dca81e9fbad641eedbaed73c7cfc6ad5992d /ethereal
parentfaa3aa14ed261dc11247c6c059c184e9a31d09c5 (diff)
downloadgo-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar.gz
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar.bz2
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar.lz
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar.xz
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.tar.zst
go-tangerine-23fc50c61b99735263eb682eb992c174eceea632.zip
Upgraded to new mutan
Diffstat (limited to 'ethereal')
-rw-r--r--ethereal/ui/gui.go4
-rw-r--r--ethereal/ui/ui_lib.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go
index 92c6e9389..46bfa0133 100644
--- a/ethereal/ui/gui.go
+++ b/ethereal/ui/gui.go
@@ -67,7 +67,7 @@ func (gui *Gui) Start(assetPath string) {
Init: func(p *ethpub.PTx, obj qml.Object) { p.Value = ""; p.Hash = ""; p.Address = "" },
}})
- ethutil.Config.SetClientString(fmt.Sprintf("/Ethereal v%s", "0.5.0 RC2"))
+ ethutil.Config.SetClientString(fmt.Sprintf("/Ethereal v%s", "0.5.0 RC3"))
ethutil.Config.Log.Infoln("[GUI] Starting GUI")
// Create a new QML engine
gui.engine = qml.NewEngine()
@@ -223,7 +223,7 @@ func (gui *Gui) Transact(recipient, value, gas, gasPrice, data string) (*ethpub.
func (gui *Gui) Create(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) {
keyPair := ethutil.Config.Db.GetKeys()[0]
- mainInput, initInput := mutan.PreProcess(data)
+ mainInput, initInput := mutan.PreParse(data)
return gui.pub.Create(ethutil.Hex(keyPair.PrivateKey), value, gas, gasPrice, initInput, mainInput)
}
diff --git a/ethereal/ui/ui_lib.go b/ethereal/ui/ui_lib.go
index 35ceb7d79..6736e79ae 100644
--- a/ethereal/ui/ui_lib.go
+++ b/ethereal/ui/ui_lib.go
@@ -121,7 +121,7 @@ func DefaultAssetPath() string {
func (ui *UiLib) DebugTx(recipient, valueStr, gasStr, gasPriceStr, data string) {
state := ui.eth.BlockChain().CurrentBlock.State()
- mainInput, _ := mutan.PreProcess(data)
+ mainInput, _ := mutan.PreParse(data)
callerScript, err := utils.Compile(mainInput)
if err != nil {
ethutil.Config.Log.Debugln(err)