Merge branch 'release/poc5-rc3'
This commit is contained in:
		@@ -5,7 +5,7 @@ Ethereum
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
Ethereum Go Client © 2014 Jeffrey Wilcke.
 | 
					Ethereum Go Client © 2014 Jeffrey Wilcke.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Current state: Proof of Concept 5.0 RC1.
 | 
					Current state: Proof of Concept 5.0 RC3.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
For the development package please see the [eth-go package](https://github.com/ethereum/eth-go).
 | 
					For the development package please see the [eth-go package](https://github.com/ethereum/eth-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 = "" },
 | 
							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")
 | 
						ethutil.Config.Log.Infoln("[GUI] Starting GUI")
 | 
				
			||||||
	// Create a new QML engine
 | 
						// Create a new QML engine
 | 
				
			||||||
	gui.engine = qml.NewEngine()
 | 
						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) {
 | 
					func (gui *Gui) Create(recipient, value, gas, gasPrice, data string) (*ethpub.PReceipt, error) {
 | 
				
			||||||
	keyPair := ethutil.Config.Db.GetKeys()[0]
 | 
						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)
 | 
						return gui.pub.Create(ethutil.Hex(keyPair.PrivateKey), value, gas, gasPrice, initInput, mainInput)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -121,7 +121,7 @@ func DefaultAssetPath() string {
 | 
				
			|||||||
func (ui *UiLib) DebugTx(recipient, valueStr, gasStr, gasPriceStr, data string) {
 | 
					func (ui *UiLib) DebugTx(recipient, valueStr, gasStr, gasPriceStr, data string) {
 | 
				
			||||||
	state := ui.eth.BlockChain().CurrentBlock.State()
 | 
						state := ui.eth.BlockChain().CurrentBlock.State()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	mainInput, _ := mutan.PreProcess(data)
 | 
						mainInput, _ := mutan.PreParse(data)
 | 
				
			||||||
	callerScript, err := utils.Compile(mainInput)
 | 
						callerScript, err := utils.Compile(mainInput)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		ethutil.Config.Log.Debugln(err)
 | 
							ethutil.Config.Log.Debugln(err)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -24,7 +24,7 @@ func Compile(script string) ([]byte, error) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
func CompileScript(script string) ([]byte, []byte, error) {
 | 
					func CompileScript(script string) ([]byte, []byte, error) {
 | 
				
			||||||
	// Preprocess
 | 
						// Preprocess
 | 
				
			||||||
	mainInput, initInput := mutan.PreProcess(script)
 | 
						mainInput, initInput := mutan.PreParse(script)
 | 
				
			||||||
	// Compile main script
 | 
						// Compile main script
 | 
				
			||||||
	mainScript, err := Compile(mainInput)
 | 
						mainScript, err := Compile(mainInput)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user