File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -501,11 +501,11 @@ mod fast {
501
501
502
502
let proposal = sender. propose_send ( transaction_request) . await . unwrap ( ) ;
503
503
assert_eq ! ( proposal. steps( ) . len( ) , 2usize ) ;
504
- let sent_txids_according_to_broadcast = sender
504
+ let _sent_txids_according_to_broadcast = sender
505
505
. complete_and_broadcast_stored_proposal ( )
506
506
. await
507
507
. unwrap ( ) ;
508
- let txids = sender
508
+ let _txids = sender
509
509
. wallet
510
510
. transactions ( )
511
511
. read ( )
@@ -514,8 +514,6 @@ mod fast {
514
514
. keys ( )
515
515
. cloned ( )
516
516
. collect :: < Vec < TxId > > ( ) ;
517
- dbg ! ( & txids) ;
518
- dbg ! ( sent_txids_according_to_broadcast) ;
519
517
assert_eq ! (
520
518
sender
521
519
. wallet
@@ -526,10 +524,10 @@ mod fast {
526
524
. len( ) ,
527
525
3usize
528
526
) ;
529
- let val_tranfers = dbg ! ( sender. sorted_value_transfers( true ) . await ) ;
527
+ let val_transfers = sender. sorted_value_transfers ( true ) . await ;
530
528
// This fails, as we don't scan sends to tex correctly yet
531
529
assert_eq ! (
532
- val_tranfers . 0 [ 0 ] . recipient_address( ) . unwrap( ) ,
530
+ val_transfers [ 1 ] . recipient_address( ) . unwrap( ) ,
533
531
tex_addr_from_first. encode( )
534
532
) ;
535
533
}
You can’t perform that action at this time.
0 commit comments