Skip to content

Commit b4bd70c

Browse files
committed
Re-wrote ethereum.js
1 parent 8585e59 commit b4bd70c

File tree

8 files changed

+698
-334
lines changed

8 files changed

+698
-334
lines changed

mist/assets/debugger/debugger.qml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ ApplicationWindow {
221221
}
222222
height: parent.height
223223
width: 300
224-
TableViewColumn{ role: "value" ; title: "Temp" ; width: 200 }
224+
TableViewColumn{ role: "value" ; title: "Local VM stack" ; width: stackTableView.width - 2 }
225225
model: stackModel
226226
}
227227

@@ -233,7 +233,7 @@ ApplicationWindow {
233233
height: parent.height
234234
width: parent.width - stackTableView.width
235235
TableViewColumn{ id:mnumColmn ; role: "num" ; title: "#" ; width: 50 }
236-
TableViewColumn{ role: "value" ; title: "Memory" ; width: 750 }
236+
TableViewColumn{ role: "value" ; title: "Memory" ; width: 650 }
237237
model: memModel
238238
}
239239
}
@@ -248,8 +248,8 @@ ApplicationWindow {
248248
}
249249
height: parent.height
250250
width: parent.width
251-
TableViewColumn{ id: key ; role: "key" ; title: "#" ; width: storageTableView.width / 2}
252-
TableViewColumn{ role: "value" ; title: "Storage" ; width: storageTableView.width / 2}
251+
TableViewColumn{ id: key ; role: "key" ; title: "#" ; width: storageTableView.width / 2 - 1}
252+
TableViewColumn{ role: "value" ; title: "Storage" ; width: storageTableView.width / 2 - 1}
253253
model: storageModel
254254
}
255255
}

mist/assets/ext/filter.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ Filter.prototype.changed = function(callback) {
3131
this.callbacks.push(callback);
3232

3333
var self = this;
34-
message.connect(function(messages, id) {
34+
messages.connect(function(messages, id) {
3535
if(id == self.id) {
36-
for(var i = 0; i < self.callbacks.length; i++) {
37-
self.callbacks[i].call(self, messages);
38-
}
36+
for(var i = 0; i < self.callbacks.length; i++) {
37+
self.callbacks[i].call(self, messages);
38+
}
3939
}
4040
});
4141
};

0 commit comments

Comments
 (0)