@@ -21,28 +21,23 @@ parser_error_t read_payee_policy_allow(parser_context_t *ctx, payee_policy_allow
2121 CHECK_INPUT (allow );
2222
2323 CHECK_ERROR (read_u8 (ctx , (uint8_t * )& allow -> has_max_fee ));
24- print_u8 ("has max fee:" , allow -> has_max_fee );
2524 if (allow -> has_max_fee ) {
2625 CHECK_ERROR (read_amount (ctx , & allow -> max_fee ));
2726 }
2827
2928 CHECK_ERROR (read_u8 (ctx , (uint8_t * )& allow -> has_gas_limit ));
30- print_u8 ("has gas limit:" , allow -> has_gas_limit );
3129 if (allow -> has_gas_limit ) {
3230 CHECK_ERROR (read_gas (ctx , & allow -> gas_limit ));
3331 }
3432
3533 CHECK_ERROR (read_u8 (ctx , (uint8_t * )& allow -> has_max_gas_price ));
36- print_u8 ("has max gas price:" , allow -> has_max_gas_price );
3734 if (allow -> has_max_gas_price ) {
3835 CHECK_ERROR (read_gas_u128 (ctx , & allow -> max_gas_price ));
3936 }
4037
4138 CHECK_ERROR (read_u8 (ctx , (uint8_t * )& allow -> has_transaction_limit ));
42- print_u8 ("has transaction limit:" , allow -> has_transaction_limit );
4339 if (allow -> has_transaction_limit ) {
4440 CHECK_ERROR (read_u64 (ctx , & allow -> transaction_limit ));
45- print_u64 ("transaction limit:" , allow -> transaction_limit );
4641 }
4742
4843 return parser_ok ;
@@ -73,7 +68,6 @@ parser_error_t read_payee_policy_list(parser_context_t *ctx, payee_policy_list_t
7368 CHECK_INPUT (payees );
7469
7570 CHECK_ERROR (read_u32 (ctx , & payees -> length ));
76- print_u32 ("payees list length:" , payees -> length );
7771 for (int i = 0 ; i < (int )payees -> length ; i ++ ) {
7872 CHECK_ERROR (read_address (ctx , & payees -> pairs [i ].address ));
7973 CHECK_ERROR (read_payee_policy (ctx , & payees -> pairs [i ].policy ));
@@ -86,7 +80,6 @@ parser_error_t read_authorized_updaters(parser_context_t *ctx, address_list_t *u
8680 CHECK_INPUT (updaters );
8781
8882 CHECK_ERROR (read_u32 (ctx , & updaters -> length ));
89- print_u32 ("authorized updaters length:" , updaters -> length );
9083 for (int i = 0 ; i < (int )updaters -> length ; i ++ ) {
9184 CHECK_ERROR (read_address (ctx , & updaters -> address [i ]));
9285 }
@@ -103,7 +96,6 @@ parser_error_t read_authorized_sequencers(parser_context_t *ctx, authorized_sequ
10396 print_string ("AUTHORIZED_SEQUENCERS_ALL" );
10497 break ;
10598 case AUTHORIZED_SEQUENCERS_SOME :
106- print_string ("AUTHORIZED_SEQUENCERS_SOME" );
10799 CHECK_ERROR (read_authorized_updaters (ctx , & sequencers -> updaters ));
108100 break ;
109101 }
@@ -139,7 +131,7 @@ parser_error_t read_paymaster_call_message(parser_context_t *ctx, paymaster_call
139131 CHECK_ERROR (read_u8 (ctx , (uint8_t * )& paymaster -> type ));
140132 switch (paymaster -> type ) {
141133 case PAYMASTER_CALL_REGISTER_PAYMASTER :
142- print_string ( "PAYMASTER_CALL_REGISTER_PAYMASTER" );
134+
143135 CHECK_ERROR (read_paymaster_register_paymaster (ctx , & paymaster -> register_paymaster ));
144136 break ;
145137 case PAYMASTER_CALL_SET_PAYER_FOR_SEQUENCER :
0 commit comments