@@ -1635,7 +1635,7 @@ impl<'a> ClarityBlockConnection<'a, '_> {
1635
1635
} ;
1636
1636
1637
1637
let boot_code_address = boot_code_addr( mainnet) ;
1638
- let boot_code_auth = boot_code_tx_auth( boot_code_address. clone ( ) ) ;
1638
+ let boot_code_auth = boot_code_tx_auth( boot_code_address) ;
1639
1639
1640
1640
// SIP-031 setup (deploy of the boot contract, minting and transfer to the boot contract)
1641
1641
let sip_031_contract_id = boot_code_id( SIP_031_NAME , mainnet) ;
@@ -1654,28 +1654,28 @@ impl<'a> ClarityBlockConnection<'a, '_> {
1654
1654
1655
1655
let mut sip_031_initialization_receipt = self . as_transaction( |tx_conn| {
1656
1656
// initialize with a synthetic transaction
1657
- debug !( "Instantiate {} contract" , & sip_031_contract_id) ;
1657
+ info !( "Instantiate {} contract" , & sip_031_contract_id) ;
1658
1658
let receipt = StacksChainState :: process_transaction_payload(
1659
1659
tx_conn,
1660
1660
& sip_031_contract_tx,
1661
1661
& boot_code_account,
1662
1662
ASTRules :: PrecheckSize ,
1663
1663
None ,
1664
1664
)
1665
- . expect( "FATAL: Failed to process .sip031 contract initialization" ) ;
1665
+ . expect( "FATAL: Failed to process .sip-031 contract initialization" ) ;
1666
1666
receipt
1667
1667
} ) ;
1668
1668
1669
1669
if sip_031_initialization_receipt. result != Value :: okay_true( )
1670
1670
|| sip_031_initialization_receipt. post_condition_aborted
1671
1671
{
1672
1672
panic!(
1673
- "FATAL: Failure processing sip031 contract initialization: {:#?}" ,
1673
+ "FATAL: Failure processing sip-031 contract initialization: {:#?}" ,
1674
1674
& sip_031_initialization_receipt
1675
1675
) ;
1676
1676
}
1677
1677
1678
- let recipient = PrincipalData :: Contract ( boot_code_id ( SIP_031_NAME , mainnet ) ) ;
1678
+ let recipient = PrincipalData :: Contract ( sip_031_contract_id ) ;
1679
1679
1680
1680
self . as_transaction( |tx_conn| {
1681
1681
tx_conn
0 commit comments