| 
									
										
										
										
											2015-01-06 12:13:57 +01:00
										 |  |  | /* | 
					
						
							|  |  |  | 	This file is part of go-ethereum | 
					
						
							| 
									
										
										
										
											2014-10-23 15:48:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-06 12:13:57 +01:00
										 |  |  | 	go-ethereum 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 3 of the License, or | 
					
						
							|  |  |  | 	(at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	go-ethereum 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 go-ethereum.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @authors | 
					
						
							|  |  |  |  * 	Jeffrey Wilcke <i@jev.io> | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-07-02 00:13:50 +02:00
										 |  |  | package main | 
					
						
							| 
									
										
										
										
											2014-02-25 10:54:15 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2014-08-14 00:18:37 +02:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2015-01-28 14:02:36 +01:00
										 |  |  | 	"io/ioutil" | 
					
						
							| 
									
										
										
										
											2014-08-07 16:35:47 +02:00
										 |  |  | 	"path" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/types" | 
					
						
							| 
									
										
										
										
											2014-12-15 13:00:09 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/eth" | 
					
						
							| 
									
										
										
										
											2014-10-23 15:01:27 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/ethutil" | 
					
						
							| 
									
										
										
										
											2014-12-15 13:00:09 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/event/filter" | 
					
						
							| 
									
										
										
										
											2014-08-12 12:16:21 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/javascript" | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/xeth" | 
					
						
							| 
									
										
										
										
											2015-01-28 14:51:54 +01:00
										 |  |  | 	"github.com/obscuren/qml" | 
					
						
							| 
									
										
										
										
											2014-02-25 10:54:15 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-12 00:12:10 -04:00
										 |  |  | type memAddr struct { | 
					
						
							|  |  |  | 	Num   string | 
					
						
							|  |  |  | 	Value string | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-25 10:54:15 +01:00
										 |  |  | // UI Library that has some basic functionality exposed | 
					
						
							|  |  |  | type UiLib struct { | 
					
						
							| 
									
										
										
										
											2015-01-28 18:35:49 +01:00
										 |  |  | 	*xeth.XEth | 
					
						
							| 
									
										
										
										
											2014-02-25 10:54:15 +01:00
										 |  |  | 	engine    *qml.Engine | 
					
						
							|  |  |  | 	eth       *eth.Ethereum | 
					
						
							|  |  |  | 	connected bool | 
					
						
							| 
									
										
										
										
											2014-03-27 17:14:04 +07:00
										 |  |  | 	assetPath string | 
					
						
							| 
									
										
										
										
											2014-04-11 12:50:31 -04:00
										 |  |  | 	// The main application window | 
					
						
							| 
									
										
										
										
											2015-03-10 12:06:16 +01:00
										 |  |  | 	win *qml.Window | 
					
						
							| 
									
										
										
										
											2014-08-12 12:16:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	jsEngine *javascript.JSRE | 
					
						
							| 
									
										
										
										
											2014-08-20 10:00:02 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	filterCallbacks map[int][]int | 
					
						
							| 
									
										
										
										
											2014-12-15 13:00:09 +01:00
										 |  |  | 	filterManager   *filter.FilterManager | 
					
						
							| 
									
										
										
										
											2014-03-27 17:14:04 +07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func NewUiLib(engine *qml.Engine, eth *eth.Ethereum, assetPath string) *UiLib { | 
					
						
							| 
									
										
										
										
											2015-03-09 13:50:05 +01:00
										 |  |  | 	x := xeth.New(eth, nil) | 
					
						
							| 
									
										
										
										
											2015-03-05 09:14:58 +01:00
										 |  |  | 	lib := &UiLib{XEth: x, engine: engine, eth: eth, assetPath: assetPath, jsEngine: javascript.NewJSRE(x), filterCallbacks: make(map[int][]int)} //, filters: make(map[int]*xeth.JSFilter)} | 
					
						
							| 
									
										
										
										
											2014-12-15 13:00:09 +01:00
										 |  |  | 	lib.filterManager = filter.NewFilterManager(eth.EventMux()) | 
					
						
							| 
									
										
										
										
											2015-01-10 00:51:56 +01:00
										 |  |  | 	go lib.filterManager.Start() | 
					
						
							| 
									
										
										
										
											2014-11-07 12:18:48 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return lib | 
					
						
							| 
									
										
										
										
											2014-08-12 12:16:21 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-14 00:13:47 +02:00
										 |  |  | func (self *UiLib) Notef(args []interface{}) { | 
					
						
							| 
									
										
										
										
											2014-10-31 12:56:05 +01:00
										 |  |  | 	guilogger.Infoln(args...) | 
					
						
							| 
									
										
										
										
											2014-09-08 00:50:25 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-12 12:16:21 +02:00
										 |  |  | func (self *UiLib) ImportTx(rlpTx string) { | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | 	tx := types.NewTransactionFromBytes(ethutil.Hex2Bytes(rlpTx)) | 
					
						
							| 
									
										
										
										
											2014-12-01 20:18:09 +01:00
										 |  |  | 	err := self.eth.TxPool().Add(tx) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		guilogger.Infoln("import tx failed ", err) | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-08-12 12:16:21 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *UiLib) EvalJavascriptFile(path string) { | 
					
						
							|  |  |  | 	self.jsEngine.LoadExtFile(path[7:]) | 
					
						
							| 
									
										
										
										
											2014-02-25 10:54:15 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 00:18:37 +02:00
										 |  |  | func (self *UiLib) EvalJavascriptString(str string) string { | 
					
						
							|  |  |  | 	value, err := self.jsEngine.Run(str) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err.Error() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return fmt.Sprintf("%v", value) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-28 00:25:01 +02:00
										 |  |  | func (ui *UiLib) Muted(content string) { | 
					
						
							|  |  |  | 	component, err := ui.engine.LoadFile(ui.AssetPath("qml/muted.qml")) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2014-10-31 12:56:05 +01:00
										 |  |  | 		guilogger.Debugln(err) | 
					
						
							| 
									
										
										
										
											2014-04-28 00:25:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	win := component.CreateWindow(nil) | 
					
						
							|  |  |  | 	go func() { | 
					
						
							|  |  |  | 		path := "file://" + ui.AssetPath("muted/index.html") | 
					
						
							|  |  |  | 		win.Set("url", path) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		win.Show() | 
					
						
							|  |  |  | 		win.Wait() | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-28 12:18:19 +01:00
										 |  |  | func (ui *UiLib) Connect(button qml.Object) { | 
					
						
							| 
									
										
										
										
											2014-02-25 10:54:15 +01:00
										 |  |  | 	if !ui.connected { | 
					
						
							| 
									
										
										
										
											2015-02-07 00:38:36 +01:00
										 |  |  | 		ui.eth.Start() | 
					
						
							| 
									
										
										
										
											2014-02-28 12:18:19 +01:00
										 |  |  | 		ui.connected = true | 
					
						
							|  |  |  | 		button.Set("enabled", false) | 
					
						
							| 
									
										
										
										
											2014-02-25 10:54:15 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-07 00:15:04 +01:00
										 |  |  | func (ui *UiLib) ConnectToPeer(nodeURL string) { | 
					
						
							|  |  |  | 	if err := ui.eth.SuggestPeer(nodeURL); err != nil { | 
					
						
							|  |  |  | 		guilogger.Infoln("SuggestPeer error: " + err.Error()) | 
					
						
							| 
									
										
										
										
											2015-01-05 17:12:52 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-25 10:54:15 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-03-03 00:54:41 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | func (ui *UiLib) AssetPath(p string) string { | 
					
						
							| 
									
										
										
										
											2014-03-27 17:14:04 +07:00
										 |  |  | 	return path.Join(ui.assetPath, p) | 
					
						
							| 
									
										
										
										
											2014-03-03 00:54:41 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-06-23 12:20:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-22 13:23:11 +01:00
										 |  |  | func (self *UiLib) Transact(params map[string]interface{}) (string, error) { | 
					
						
							|  |  |  | 	object := mapToTxParams(params) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-28 18:35:49 +01:00
										 |  |  | 	return self.XEth.Transact( | 
					
						
							| 
									
										
										
										
											2015-02-26 13:22:09 +01:00
										 |  |  | 		object["from"], | 
					
						
							| 
									
										
										
										
											2014-12-22 13:23:11 +01:00
										 |  |  | 		object["to"], | 
					
						
							|  |  |  | 		object["value"], | 
					
						
							|  |  |  | 		object["gas"], | 
					
						
							|  |  |  | 		object["gasPrice"], | 
					
						
							|  |  |  | 		object["data"], | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *UiLib) Compile(code string) (string, error) { | 
					
						
							|  |  |  | 	bcode, err := ethutil.Compile(code, false) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err.Error(), err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ethutil.Bytes2Hex(bcode), err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *UiLib) Call(params map[string]interface{}) (string, error) { | 
					
						
							|  |  |  | 	object := mapToTxParams(params) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-28 18:35:49 +01:00
										 |  |  | 	return self.XEth.Execute( | 
					
						
							| 
									
										
										
										
											2014-12-22 13:23:11 +01:00
										 |  |  | 		object["to"], | 
					
						
							|  |  |  | 		object["value"], | 
					
						
							|  |  |  | 		object["gas"], | 
					
						
							|  |  |  | 		object["gasPrice"], | 
					
						
							|  |  |  | 		object["data"], | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *UiLib) AddLocalTransaction(to, data, gas, gasPrice, value string) int { | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 	return 0 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 		return self.miner.AddLocalTx(&miner.LocalTx{ | 
					
						
							|  |  |  | 			To:       ethutil.Hex2Bytes(to), | 
					
						
							|  |  |  | 			Data:     ethutil.Hex2Bytes(data), | 
					
						
							|  |  |  | 			Gas:      gas, | 
					
						
							|  |  |  | 			GasPrice: gasPrice, | 
					
						
							|  |  |  | 			Value:    value, | 
					
						
							|  |  |  | 		}) - 1 | 
					
						
							|  |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2014-12-22 13:23:11 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *UiLib) RemoveLocalTransaction(id int) { | 
					
						
							| 
									
										
										
										
											2015-02-09 16:20:34 +01:00
										 |  |  | 	//self.miner.RemoveLocalTx(id) | 
					
						
							| 
									
										
										
										
											2014-12-22 13:23:11 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *UiLib) ToggleMining() bool { | 
					
						
							| 
									
										
										
										
											2015-03-11 23:35:34 +01:00
										 |  |  | 	if !self.eth.IsMining() { | 
					
						
							|  |  |  | 		err := self.eth.StartMining() | 
					
						
							|  |  |  | 		return err == nil | 
					
						
							| 
									
										
										
										
											2014-12-22 13:23:11 +01:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2015-03-11 23:35:34 +01:00
										 |  |  | 		self.eth.StopMining() | 
					
						
							| 
									
										
										
										
											2014-12-22 13:23:11 +01:00
										 |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *UiLib) ToHex(data string) string { | 
					
						
							|  |  |  | 	return "0x" + ethutil.Bytes2Hex([]byte(data)) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *UiLib) ToAscii(data string) string { | 
					
						
							|  |  |  | 	start := 0 | 
					
						
							|  |  |  | 	if len(data) > 1 && data[0:2] == "0x" { | 
					
						
							|  |  |  | 		start = 2 | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return string(ethutil.Hex2Bytes(data[start:])) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /// Ethereum filter methods | 
					
						
							| 
									
										
										
										
											2015-01-22 00:24:20 +01:00
										 |  |  | func (self *UiLib) NewFilter(object map[string]interface{}, view *qml.Common) (id int) { | 
					
						
							| 
									
										
										
										
											2015-01-28 14:02:36 +01:00
										 |  |  | 	/* TODO remove me | 
					
						
							| 
									
										
										
										
											2014-10-18 13:20:35 +02:00
										 |  |  | 	filter := qt.NewFilterFromMap(object, self.eth) | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | 	filter.MessageCallback = func(messages state.Messages) { | 
					
						
							| 
									
										
										
										
											2015-01-28 18:35:49 +01:00
										 |  |  | 		view.Call("messages", xeth.ToMessages(messages), id) | 
					
						
							| 
									
										
										
										
											2014-08-20 10:00:02 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-12-15 13:00:09 +01:00
										 |  |  | 	id = self.filterManager.InstallFilter(filter) | 
					
						
							| 
									
										
										
										
											2014-09-14 00:13:47 +02:00
										 |  |  | 	return id | 
					
						
							| 
									
										
										
										
											2015-01-28 14:02:36 +01:00
										 |  |  | 	*/ | 
					
						
							|  |  |  | 	return 0 | 
					
						
							| 
									
										
										
										
											2014-08-20 12:42:49 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 12:35:31 +01:00
										 |  |  | func (self *UiLib) NewFilterString(typ string, view *qml.Common) (id int) { | 
					
						
							| 
									
										
										
										
											2015-01-28 14:02:36 +01:00
										 |  |  | 	/* TODO remove me | 
					
						
							| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | 	filter := core.NewFilter(self.eth) | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | 	filter.BlockCallback = func(block *types.Block) { | 
					
						
							| 
									
										
										
										
											2015-01-22 12:35:31 +01:00
										 |  |  | 		view.Call("messages", "{}", id) | 
					
						
							| 
									
										
										
										
											2014-08-20 12:42:49 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-12-15 13:00:09 +01:00
										 |  |  | 	id = self.filterManager.InstallFilter(filter) | 
					
						
							| 
									
										
										
										
											2014-09-14 00:13:47 +02:00
										 |  |  | 	return id | 
					
						
							| 
									
										
										
										
											2015-01-28 14:02:36 +01:00
										 |  |  | 	*/ | 
					
						
							|  |  |  | 	return 0 | 
					
						
							| 
									
										
										
										
											2014-08-20 10:00:02 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-14 00:13:47 +02:00
										 |  |  | func (self *UiLib) Messages(id int) *ethutil.List { | 
					
						
							| 
									
										
										
										
											2015-01-28 14:02:36 +01:00
										 |  |  | 	/* TODO remove me | 
					
						
							| 
									
										
										
										
											2014-12-15 13:00:09 +01:00
										 |  |  | 	filter := self.filterManager.GetFilter(id) | 
					
						
							| 
									
										
										
										
											2014-08-20 10:00:02 +02:00
										 |  |  | 	if filter != nil { | 
					
						
							| 
									
										
										
										
											2015-01-28 18:35:49 +01:00
										 |  |  | 		messages := xeth.ToMessages(filter.Find()) | 
					
						
							| 
									
										
										
										
											2014-09-14 00:13:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-24 20:40:18 +02:00
										 |  |  | 		return messages | 
					
						
							| 
									
										
										
										
											2014-08-20 10:00:02 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-01-28 14:02:36 +01:00
										 |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2014-09-14 00:13:47 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ethutil.EmptyList() | 
					
						
							| 
									
										
										
										
											2014-08-20 10:00:02 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-28 14:02:36 +01:00
										 |  |  | func (self *UiLib) ReadFile(p string) string { | 
					
						
							|  |  |  | 	content, err := ioutil.ReadFile(self.AssetPath(path.Join("ext", p))) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		guilogger.Infoln("error reading file", p, ":", err) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return string(content) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-14 00:13:47 +02:00
										 |  |  | func (self *UiLib) UninstallFilter(id int) { | 
					
						
							| 
									
										
										
										
											2014-12-15 13:00:09 +01:00
										 |  |  | 	self.filterManager.UninstallFilter(id) | 
					
						
							| 
									
										
										
										
											2014-08-20 10:00:02 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-08-20 12:42:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-22 14:54:27 +02:00
										 |  |  | func mapToTxParams(object map[string]interface{}) map[string]string { | 
					
						
							| 
									
										
										
										
											2014-08-20 12:42:49 +02:00
										 |  |  | 	// Default values | 
					
						
							|  |  |  | 	if object["from"] == nil { | 
					
						
							|  |  |  | 		object["from"] = "" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if object["to"] == nil { | 
					
						
							|  |  |  | 		object["to"] = "" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if object["value"] == nil { | 
					
						
							|  |  |  | 		object["value"] = "" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if object["gas"] == nil { | 
					
						
							|  |  |  | 		object["gas"] = "" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if object["gasPrice"] == nil { | 
					
						
							|  |  |  | 		object["gasPrice"] = "" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var dataStr string | 
					
						
							|  |  |  | 	var data []string | 
					
						
							|  |  |  | 	if list, ok := object["data"].(*qml.List); ok { | 
					
						
							|  |  |  | 		list.Convert(&data) | 
					
						
							| 
									
										
										
										
											2014-09-22 14:54:27 +02:00
										 |  |  | 	} else if str, ok := object["data"].(string); ok { | 
					
						
							|  |  |  | 		data = []string{str} | 
					
						
							| 
									
										
										
										
											2014-08-20 12:42:49 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for _, str := range data { | 
					
						
							|  |  |  | 		if ethutil.IsHex(str) { | 
					
						
							|  |  |  | 			str = str[2:] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if len(str) != 64 { | 
					
						
							|  |  |  | 				str = ethutil.LeftPadString(str, 64) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			str = ethutil.Bytes2Hex(ethutil.LeftPadBytes(ethutil.Big(str).Bytes(), 32)) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		dataStr += str | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-09-22 14:54:27 +02:00
										 |  |  | 	object["data"] = dataStr | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	conv := make(map[string]string) | 
					
						
							|  |  |  | 	for key, value := range object { | 
					
						
							|  |  |  | 		if v, ok := value.(string); ok { | 
					
						
							|  |  |  | 			conv[key] = v | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return conv | 
					
						
							|  |  |  | } |