File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -35,4 +35,4 @@ requirements = []
3535source = "github"
3636
3737[etags]
38- "aiken-lang/fuzz@main" = [{ secs_since_epoch = 1756477030 , nanos_since_epoch = 492285687 }, "9843473958e51725a9274b487d2d4aac0395ec1a2e30f090724fa737226bc127"]
38+ "aiken-lang/fuzz@main" = [{ secs_since_epoch = 1756480816 , nanos_since_epoch = 282727354 }, "9843473958e51725a9274b487d2d4aac0395ec1a2e30f090724fa737226bc127"]
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ fn scenario_inputs(
305305 10 ,
306306 ),
307307 )
308- _ -> todo
308+ _ -> fail @ "Unsupported transaction type in scenario_inputs"
309309 }
310310}
311311
@@ -349,7 +349,7 @@ fn scenario_outputs(
349349 } else {
350350 constant ((st, []))
351351 }
352- _ -> todo
352+ _ -> fail @ "Unsupported transaction type in scenario_outputs"
353353 }
354354}
355355
@@ -373,14 +373,14 @@ fn scenario_mints(
373373 assets.from_asset (cosponsor_validator_hash, token_name, amount * - 1 )
374374 constant ((st, mint))
375375 }
376- _ -> todo
376+ _ -> fail @ "Unsupported transaction type in scenario_mints"
377377 }
378378}
379379
380380fn scenario_mint_redeemer (st: State ) -> Fuzzer < (State , CosponsorMintRedeemer )> {
381381 when st.transaction_type is {
382382 Deposit -> constant ((st, CosponsorMintRedeemer .MDeposit ))
383- _ -> todo
383+ _ -> fail @ "Unsupported transaction type in scenario_mint_redeemer"
384384 }
385385}
386386
@@ -452,6 +452,6 @@ fn scenario_redeemers_baseline(
452452 ),
453453 ),
454454 )
455- _ -> todo
455+ _ -> fail @ "Unsupported transaction type in scenario_redeemers_baseline"
456456 }
457457}
You can’t perform that action at this time.
0 commit comments