You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let contract_max_size = consensus_parameters.contract_params().contract_max_size();
2253
2253
assert!(
2254
-
contract_size > contract_max_size,
2255
-
"this test should ideally be run with a contract bigger than the max contract size ({contract_max_size}B) so that we know deployment couldn't have happened without blobs"
2256
-
);
2254
+
contract_size > contract_max_size,
2255
+
"this test should ideally be run with a contract bigger than the max contract size ({contract_max_size}B) so that we know deployment couldn't have happened without blobs"
2256
+
);
2257
2257
2258
2258
let contract = Contract::load_from(contract_binary,LoadConfiguration::default())?;
0 commit comments