We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
borrow_deref_ref
1 parent 8c23c0e commit 1344ecbCopy full SHA for 1344ecb
stackslib/src/clarity_vm/clarity.rs
@@ -822,9 +822,9 @@ impl<'a> ClarityBlockConnection<'a, '_> {
822
823
// instantiate costs 2 contract...
824
let cost_2_code = if mainnet {
825
- &*BOOT_CODE_COSTS_2
+ BOOT_CODE_COSTS_2
826
} else {
827
- &*BOOT_CODE_COSTS_2_TESTNET
+ BOOT_CODE_COSTS_2_TESTNET
828
};
829
830
let payload = TransactionPayload::SmartContract(
@@ -1013,7 +1013,7 @@ impl<'a> ClarityBlockConnection<'a, '_> {
1013
}
1014
1015
/////////////////// .costs-3 ////////////////////////
1016
- let cost_3_code = &*BOOT_CODE_COSTS_3;
+ let cost_3_code = BOOT_CODE_COSTS_3;
1017
1018
1019
TransactionSmartContract {
0 commit comments