diff --git a/ui/library.go b/ui/library.go
index c9273e8c5e3ab01212948e7ca228f44b7148cb6f..3bbb01314dcd2ed7c22ceda1f3475ad9a906ce5c 100644
--- a/ui/library.go
+++ b/ui/library.go
@@ -40,6 +40,8 @@ func (lib *EthLib) CreateTx(receiver, a, data string) string {
 
 	if len(receiver) == 0 {
 		ethutil.Config.Log.Infof("Contract addr %x", tx.Hash()[12:])
+	} else {
+		ethutil.Config.Log.Infof("Tx hash %x", tx.Hash())
 	}
 
 	return ethutil.Hex(tx.Hash())
diff --git a/wallet.qml b/wallet.qml
index e7145cef37269f12988ef9eb898520a72791ba02..3e921b78d603ce568cd4b6d4cf5f761c96b339f8 100644
--- a/wallet.qml
+++ b/wallet.qml
@@ -221,6 +221,10 @@ ApplicationWindow {
 				text: "Import App"
 			}
 
+			Label {
+				id: walletValueLabel
+			}
+
 			Label {
 				anchors.right: peerImage.left
 				anchors.rightMargin: 5
@@ -270,7 +274,7 @@ ApplicationWindow {
 			text: "Add"
 			onClicked: {
 				ui.connectToPeer(addrField.text)
-				addrPeerWin.visible = false
+				addPeerWin.visible = false
 			}
 		}
 	}
@@ -291,6 +295,10 @@ ApplicationWindow {
 
 	}
 
+	function setWalletValue(value) {
+		walletValueLabel.text = value
+	}
+
 	function addTx(tx) {
 		txModel.insert(0, {hash: tx.hash, address: tx.address, value: tx.value})
 	}