Browse Source

Merge pull request #1031 from arkpar/mix_dpfix

mix: Added web3 to deploy object
cl-refactor
Gav Wood 10 years ago
parent
commit
5cbe956e0c
  1. 2
      mix/qml/Debugger.qml
  2. 3
      mix/qml/html/WebContainer.html

2
mix/qml/Debugger.qml

@ -426,7 +426,7 @@ Rectangle {
Layout.minimumHeight: parent.height
Text {
anchors.centerIn: parent
anchors.leftMargin: 5()
anchors.leftMargin: 5
font.family: "monospace"
color: "#4a4a4a"
text: styleData.row;

3
mix/qml/html/WebContainer.html

@ -24,7 +24,8 @@ updateContract = function(address, contractFace) {
window.deploy = {
contractAddress: address,
contractInterface: contractFace,
contract: window.contract
contract: window.contract,
web3: window.web3
};
}
};

Loading…
Cancel
Save