@@ -80,8 +80,8 @@ pub fn setup() -> MockRuntime {
8080 ] ) ;
8181
8282 let mut rt = MockRuntime {
83- receiver : * STORAGE_MARKET_ACTOR_ADDR ,
84- caller : * SYSTEM_ACTOR_ADDR ,
83+ receiver : STORAGE_MARKET_ACTOR_ADDR ,
84+ caller : SYSTEM_ACTOR_ADDR ,
8585 caller_type : * INIT_ACTOR_CODE_ID ,
8686 actor_code_cids,
8787 balance : RefCell :: new ( TokenAmount :: from_whole ( 10 ) ) ,
@@ -109,7 +109,7 @@ pub fn check_state_with_expected(rt: &MockRuntime, expected_patterns: &[Regex])
109109}
110110
111111pub fn construct_and_verify ( rt : & mut MockRuntime ) {
112- rt. expect_validate_caller_addr ( vec ! [ * SYSTEM_ACTOR_ADDR ] ) ;
112+ rt. expect_validate_caller_addr ( vec ! [ SYSTEM_ACTOR_ADDR ] ) ;
113113 assert_eq ! (
114114 RawBytes :: default ( ) ,
115115 rt. call:: <MarketActor >( METHOD_CONSTRUCTOR , & RawBytes :: default ( ) ) . unwrap( )
@@ -365,7 +365,7 @@ pub fn cron_tick_and_assert_balances(
365365 let mut payment_end = d. end_epoch ;
366366 if s. slash_epoch != EPOCH_UNDEFINED {
367367 rt. expect_send (
368- * BURNT_FUNDS_ACTOR_ADDR ,
368+ BURNT_FUNDS_ACTOR_ADDR ,
369369 METHOD_SEND ,
370370 RawBytes :: default ( ) ,
371371 d. provider_collateral . clone ( ) ,
@@ -488,7 +488,7 @@ pub fn publish_deals(
488488 . unwrap ( ) ;
489489
490490 rt. expect_send (
491- * VERIFIED_REGISTRY_ACTOR_ADDR ,
491+ VERIFIED_REGISTRY_ACTOR_ADDR ,
492492 ext:: verifreg:: USE_BYTES_METHOD as u64 ,
493493 param,
494494 TokenAmount :: zero ( ) ,
@@ -587,8 +587,8 @@ pub fn cron_tick(rt: &mut MockRuntime) {
587587}
588588
589589pub fn cron_tick_raw ( rt : & mut MockRuntime ) -> Result < RawBytes , ActorError > {
590- rt. expect_validate_caller_addr ( vec ! [ * CRON_ACTOR_ADDR ] ) ;
591- rt. set_caller ( * CRON_ACTOR_CODE_ID , * CRON_ACTOR_ADDR ) ;
590+ rt. expect_validate_caller_addr ( vec ! [ CRON_ACTOR_ADDR ] ) ;
591+ rt. set_caller ( * CRON_ACTOR_CODE_ID , CRON_ACTOR_ADDR ) ;
592592
593593 rt. call :: < MarketActor > ( Method :: CronTick as u64 , & RawBytes :: default ( ) )
594594}
@@ -611,15 +611,15 @@ pub fn expect_query_network_info(rt: &mut MockRuntime) {
611611 this_epoch_reward_smoothed : epoch_reward_smooth,
612612 } ;
613613 rt. expect_send (
614- * REWARD_ACTOR_ADDR ,
614+ REWARD_ACTOR_ADDR ,
615615 RewardMethod :: ThisEpochReward as u64 ,
616616 RawBytes :: default ( ) ,
617617 TokenAmount :: zero ( ) ,
618618 RawBytes :: serialize ( current_reward) . unwrap ( ) ,
619619 ExitCode :: OK ,
620620 ) ;
621621 rt. expect_send (
622- * STORAGE_POWER_ACTOR_ADDR ,
622+ STORAGE_POWER_ACTOR_ADDR ,
623623 PowerMethod :: CurrentTotalPower as u64 ,
624624 RawBytes :: default ( ) ,
625625 TokenAmount :: zero ( ) ,
0 commit comments