File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,9 @@ where
130130 Box :: pin ( async move {
131131 let declared_class_hashes = self . get_declared_classes ( input. from ( ) , input. to ( ) ) ?;
132132
133- if !declared_class_hashes. is_empty ( ) {
133+ if declared_class_hashes. is_empty ( ) {
134+ debug ! ( "No classes declared within the block range" , from = %input. from( ) , to = %input. to( ) ) ;
135+ } else {
134136 let total_classes = declared_classes. len ( ) ;
135137
136138 // fetch the classes artifacts
@@ -151,7 +153,6 @@ where
151153 for ( key, class) in declared_class_hashes. iter ( ) . zip ( verified_classes. into_iter ( ) ) {
152154 self . provider . set_class ( key. class_hash , class) ?;
153155 }
154- } else {
155156 }
156157
157158 Ok ( StageExecutionOutput { last_block_processed : input. to ( ) } )
You can’t perform that action at this time.
0 commit comments