File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ async function main() {
209
209
) ;
210
210
let totalDash = cycleCount * dashAmount ;
211
211
212
- console . log ( ) ;
212
+ console . log ( "" ) ;
213
213
console . log (
214
214
`Proposal Period: ${ selected . startIso } - ${ selected . endIso } (~${ proposalDeltaStr } days)` ,
215
215
) ;
@@ -219,7 +219,7 @@ async function main() {
219
219
console . log (
220
220
`Payment Period: ${ selected . superblockIso } - ${ selected . superblockIso } (~${ paymentDeltaStr } days)` ,
221
221
) ;
222
- console . log ( ) ;
222
+ console . log ( "" ) ;
223
223
console . log ( `Total Dash: ${ totalDash } = ${ dashAmount } x ${ cycleCount } ` ) ;
224
224
}
225
225
@@ -353,6 +353,8 @@ async function main() {
353
353
method : "sendrawtransaction" ,
354
354
params : [ txInfoSigned . transaction ] ,
355
355
} ) ;
356
+ console . log ( "" ) ;
357
+ console . log ( "Transaction sent:" ) ;
356
358
console . log ( txResult ) ;
357
359
}
358
360
@@ -374,12 +376,14 @@ async function main() {
374
376
} ,
375
377
) ;
376
378
if ( txResult ) {
379
+ console . log ( "" ) ;
377
380
console . log ( `TxOutProof` ) ;
378
381
console . log ( txResult ) ;
379
382
let jsonResult = await rpc . request ( "/" , {
380
383
method : "getrawtransaction" ,
381
384
params : [ txid , 1 ] ,
382
385
} ) ;
386
+ console . log ( "" ) ;
383
387
console . log ( `Tx` ) ;
384
388
console . log ( jsonResult ) ;
385
389
break ;
@@ -441,6 +445,8 @@ async function main() {
441
445
for ( ; ; ) {
442
446
let gobjResult = await submit ( ) ;
443
447
if ( gobjResult ) {
448
+ console . log ( "" ) ;
449
+ console . log ( "gobject submit result:" ) ;
444
450
console . log ( gobjResult ) ;
445
451
break ;
446
452
}
You can’t perform that action at this time.
0 commit comments