File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed 
lightning/src/blinded_path Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -47,18 +47,21 @@ pub enum BlindedPaymentTlvs {
4747} 
4848
4949impl  BlindedPaymentTlvs  { 
50+ 	// The fee used to get from the current hop to the next hop in the path. 
5051	fn  fee_base_msat ( & self )  -> u32  { 
5152		match  self  { 
5253			Self :: Forward  {  payment_relay,  .. }  => payment_relay. fee_base_msat , 
5354			_ => 0 , 
5455		} 
5556	} 
57+ 	// The fee used to get from the current hop to the next hop in the path. 
5658	fn  fee_proportional_millionths ( & self )  -> u32  { 
5759		match  self  { 
5860			Self :: Forward  {  payment_relay,  .. }  => payment_relay. fee_proportional_millionths , 
5961			_ => 0 , 
6062		} 
6163	} 
64+ 	// The delta used to get from the current hop to the next hop in the path. 
6265	fn  cltv_expiry_delta ( & self )  -> u16  { 
6366		match  self  { 
6467			Self :: Forward  {  payment_relay,  .. }  => payment_relay. cltv_expiry_delta , 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments