mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
607 B
22 lines
607 B
import QtQuick 2.0
|
|
import QtQuick.Controls 1.0;
|
|
import QtQuick.Layouts 1.0;
|
|
import Ethereum 1.0
|
|
|
|
ApplicationWindow {
|
|
minimumWidth: 500
|
|
maximumWidth: 500
|
|
maximumHeight: 400
|
|
minimumHeight: 400
|
|
|
|
function onNewBlockCb(block) {
|
|
console.log("Please overwrite onNewBlock(block):", block)
|
|
}
|
|
function onObjectChangeCb(stateObject) {
|
|
console.log("Please overwrite onObjectChangeCb(object)", stateObject)
|
|
}
|
|
function onStorageChangeCb(storageObject) {
|
|
var ev = ["storage", storageObject.stateAddress, storageObject.address].join(":");
|
|
console.log("Please overwrite onStorageChangeCb(object)", ev)
|
|
}
|
|
}
|
|
|