* redesigned sync, so no external node is needed
+ allow only once instance of the wallet + store txhash and use it as single ID for transactions
This commit is contained in:
@@ -145,16 +145,14 @@ $(document).on("render_send", function() {
|
||||
EthoMainGUI.showGeneralError(error);
|
||||
},
|
||||
function(transaction) {
|
||||
/*
|
||||
ipcRenderer.send('storeTransaction', {
|
||||
block: element.block,
|
||||
fromaddr: element.fromaddr,
|
||||
block: element.block.toString(),
|
||||
txhash: element.hash.toLowerCase(),
|
||||
fromaddr: element.fromaddr.toLowerCase(),
|
||||
timestamp: element.timestamp,
|
||||
toaddr: element.toaddr,
|
||||
value: element.value,
|
||||
confirmed: "1",
|
||||
toaddr: element.toaddr.toLowerCase(),
|
||||
value: element.value
|
||||
});
|
||||
*/
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user