File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -769,9 +769,6 @@ fn process(matches: ArgMatches) -> Result<(), ValidationError> {
769
769
let compare_status =
770
770
CompareBytecode :: compare ( & mut project_info, factory_mode, & rpc_code) ;
771
771
772
- // immutable values are set in CompareBytecode::compare so this has to be after the call
773
- dumped. copy_immutables ( & project_info, & pretty_printer) ;
774
-
775
772
if !compare_status. matched {
776
773
if matches. get_count ( "verbose" ) > 0 {
777
774
let mut error_info_table = Table :: new ( ) ;
@@ -800,6 +797,9 @@ fn process(matches: ArgMatches) -> Result<(), ValidationError> {
800
797
dumped. address
801
798
) ) ) ;
802
799
}
800
+ // immutable values are set in CompareBytecode::compare so this has to be after the call
801
+ dumped. copy_immutables ( & project_info, & pretty_printer) ;
802
+
803
803
debug ! ( "Copying parsed constructor arguments to dvf file" ) ;
804
804
dumped. copy_constructor_args ( & project_info, & pretty_printer) ;
805
805
You can’t perform that action at this time.
0 commit comments