@@ -79,7 +79,7 @@ fn test_process_create_ok() {
7979 & [ ( config, config_account) ] ,
8080 & [
8181 Check :: success ( ) ,
82- Check :: compute_units ( 594 ) ,
82+ Check :: compute_units ( 644 ) ,
8383 Check :: account ( & config)
8484 . data (
8585 & bincode:: serialize ( & ( ConfigKeys { keys : vec ! [ ] } , MyConfig :: default ( ) ) )
@@ -107,7 +107,7 @@ fn test_process_store_ok() {
107107 & [ ( config, config_account) ] ,
108108 & [
109109 Check :: success ( ) ,
110- Check :: compute_units ( 594 ) ,
110+ Check :: compute_units ( 644 ) ,
111111 Check :: account ( & config)
112112 . data ( & bincode:: serialize ( & ( ConfigKeys { keys } , my_config) ) . unwrap ( ) )
113113 . build ( ) ,
@@ -182,7 +182,7 @@ fn test_process_store_with_additional_signers() {
182182 ] ,
183183 & [
184184 Check :: success ( ) ,
185- Check :: compute_units ( 3_209 ) ,
185+ Check :: compute_units ( 3_436 ) ,
186186 Check :: account ( & config)
187187 . data ( & bincode:: serialize ( & ( ConfigKeys { keys } , my_config) ) . unwrap ( ) )
188188 . build ( ) ,
@@ -324,7 +324,7 @@ fn test_config_updates() {
324324 ( signer0, Account :: default ( ) ) ,
325325 ( signer1, Account :: default ( ) ) ,
326326 ] ,
327- & [ Check :: success ( ) , Check :: compute_units ( 3_209 ) ] ,
327+ & [ Check :: success ( ) , Check :: compute_units ( 3_436 ) ] ,
328328 ) ;
329329
330330 // Use this for next invoke.
@@ -342,7 +342,7 @@ fn test_config_updates() {
342342 ] ,
343343 & [
344344 Check :: success ( ) ,
345- Check :: compute_units ( 3_210 ) ,
345+ Check :: compute_units ( 3_437 ) ,
346346 Check :: account ( & config)
347347 . data ( & bincode:: serialize ( & ( ConfigKeys { keys } , new_config) ) . unwrap ( ) )
348348 . build ( ) ,
@@ -455,7 +455,7 @@ fn test_config_update_contains_duplicates_fails() {
455455 ( signer0, Account :: default ( ) ) ,
456456 ( signer1, Account :: default ( ) ) ,
457457 ] ,
458- & [ Check :: success ( ) , Check :: compute_units ( 3_209 ) ] ,
458+ & [ Check :: success ( ) , Check :: compute_units ( 3_436 ) ] ,
459459 ) ;
460460
461461 // Attempt update with duplicate signer inputs.
@@ -496,7 +496,7 @@ fn test_config_updates_requiring_config() {
496496 & [ ( config, config_account) , ( signer0, Account :: default ( ) ) ] ,
497497 & [
498498 Check :: success ( ) ,
499- Check :: compute_units ( 3_303 ) ,
499+ Check :: compute_units ( 3_275 ) ,
500500 Check :: account ( & config)
501501 . data ( & bincode:: serialize ( & ( ConfigKeys { keys : keys. clone ( ) } , my_config) ) . unwrap ( ) )
502502 . build ( ) ,
@@ -517,7 +517,7 @@ fn test_config_updates_requiring_config() {
517517 ] ,
518518 & [
519519 Check :: success ( ) ,
520- Check :: compute_units ( 3_303 ) ,
520+ Check :: compute_units ( 3_275 ) ,
521521 Check :: account ( & config)
522522 . data ( & bincode:: serialize ( & ( ConfigKeys { keys } , new_config) ) . unwrap ( ) )
523523 . build ( ) ,
@@ -614,7 +614,7 @@ fn test_maximum_keys_input() {
614614 let result = mollusk. process_and_validate_instruction (
615615 & instruction,
616616 & [ ( config, config_account) ] ,
617- & [ Check :: success ( ) , Check :: compute_units ( 25_756 ) ] ,
617+ & [ Check :: success ( ) , Check :: compute_units ( 27_040 ) ] ,
618618 ) ;
619619
620620 // Use this for next invoke.
@@ -627,7 +627,7 @@ fn test_maximum_keys_input() {
627627 let result = mollusk. process_and_validate_instruction (
628628 & instruction,
629629 & [ ( config, updated_config_account) ] ,
630- & [ Check :: success ( ) , Check :: compute_units ( 25_756 ) ] ,
630+ & [ Check :: success ( ) , Check :: compute_units ( 27_040 ) ] ,
631631 ) ;
632632
633633 // Use this for next invoke.
0 commit comments