Skip to content

Commit

Permalink
warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
owl352 committed Sep 20, 2024
1 parent 2fb0b36 commit 2d09317
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions lib/services/dashd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2282,23 +2282,17 @@ Dash.prototype.getDetailedTransaction = function(txid, callback) {

if (result.proRegTx !== undefined) {
tx.proRegTx = result.proRegTx;
}
if (result.proUpServTx !== undefined) {
}else if (result.proUpServTx !== undefined) {
tx.proUpServTx = result.proUpServTx;
}
if (result.proUpRegTx !== undefined) {
}else if (result.proUpRegTx !== undefined) {
tx.proUpRegTx = result.proUpRegTx;
}
if (result.proUpRevTx !== undefined) {
}else if (result.proUpRevTx !== undefined) {
tx.proUpRevTx = result.proUpRevTx;
}
if (result.cbTx !== undefined) {
}else if (result.cbTx !== undefined) {
tx.cbTx = result.cbTx;
}
if (result.qcTx !== undefined) {
}else if (result.qcTx !== undefined) {
tx.qcTx = result.qcTx;
}
if (result.mnhfTx !== undefined) {
}else if (result.mnhfTx !== undefined) {
tx.mnhfTx = result.mnhfTx;
}
}
Expand Down

0 comments on commit 2d09317

Please sign in to comment.