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 {
501501
502502 let proposal = sender. propose_send ( transaction_request) . await . unwrap ( ) ;
503503 assert_eq ! ( proposal. steps( ) . len( ) , 2usize ) ;
504- let sent_txids_according_to_broadcast = sender
504+ let _sent_txids_according_to_broadcast = sender
505505 . complete_and_broadcast_stored_proposal ( )
506506 . await
507507 . unwrap ( ) ;
508- let txids = sender
508+ let _txids = sender
509509 . wallet
510510 . transactions ( )
511511 . read ( )
@@ -514,8 +514,6 @@ mod fast {
514514 . keys ( )
515515 . cloned ( )
516516 . collect :: < Vec < TxId > > ( ) ;
517- dbg ! ( & txids) ;
518- dbg ! ( sent_txids_according_to_broadcast) ;
519517 assert_eq ! (
520518 sender
521519 . wallet
@@ -526,10 +524,10 @@ mod fast {
526524 . len( ) ,
527525 3usize
528526 ) ;
529- let val_tranfers = dbg ! ( sender. sorted_value_transfers( true ) . await ) ;
527+ let val_transfers = sender. sorted_value_transfers ( true ) . await ;
530528 // This fails, as we don't scan sends to tex correctly yet
531529 assert_eq ! (
532- val_tranfers . 0 [ 0 ] . recipient_address( ) . unwrap( ) ,
530+ val_transfers [ 1 ] . recipient_address( ) . unwrap( ) ,
533531 tex_addr_from_first. encode( )
534532 ) ;
535533 }
You can’t perform that action at this time.
0 commit comments