File tree Expand file tree Collapse file tree
batcher/aligned-batcher/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ use types::errors::{BatcherError, TransactionSendError};
5353
5454use crate :: config:: { ConfigFromYaml , ContractDeploymentOutput } ;
5555use crate :: telemetry:: sender:: TelemetrySender ;
56- use crate :: types:: non_paying:: NonPayingData ;
56+ use crate :: types:: non_paying:: NonPayingReplacementData ;
5757
5858mod config;
5959mod connection;
@@ -1770,7 +1770,7 @@ impl Batcher {
17701770 async fn generate_non_paying_data (
17711771 & self ,
17721772 client_msg : & SubmitProofMessage ,
1773- ) -> Result < NonPayingData , TransactionSendError > {
1773+ ) -> Result < NonPayingReplacementData , TransactionSendError > {
17741774 info ! ( "Handling nonpaying message" ) ;
17751775 let Some ( non_paying_config) = self . non_paying_config . as_ref ( ) else {
17761776 warn ! ( "There isn't a non-paying configuration loaded. This message will be ignored" ) ;
@@ -1793,7 +1793,7 @@ impl Batcher {
17931793 . await ;
17941794
17951795 info ! ( "Non-paying verification data message handled" ) ;
1796- Ok ( NonPayingData {
1796+ Ok ( NonPayingReplacementData {
17971797 address : non_paying_config. replacement . address ( ) ,
17981798 nonced_verification_data,
17991799 signature : non_paying_replacement_msg. signature ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ use ethers::types::{Address, Signature};
33use serde:: { Deserialize , Serialize } ;
44
55#[ derive( Serialize , Deserialize , Clone , Debug ) ]
6- pub struct NonPayingData {
6+ pub struct NonPayingReplacementData {
77 pub address : Address ,
88 pub nonced_verification_data : NoncedVerificationData ,
99 pub signature : Signature ,
You can’t perform that action at this time.
0 commit comments