Skip to content

Commit cbb6267

Browse files
Ali-Hillbogdan-manole
authored andcommitted
updating to be compatible with plutus-apps version 1.2
1 parent 44f90f4 commit cbb6267

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dapps-certification-helpers/data/Certify.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import "uuid" Data.UUID.V4
2727
taskName :: CertificationTask -> I.CertificationTaskName
2828
taskName UnitTestsTask = I.UnitTestsTask
2929
taskName StandardPropertyTask = I.StandardPropertyTask
30-
taskName DoubleSatisfactionTask = I.DoubleSatisfactionTask
30+
-- taskName DoubleSatisfactionTask = I.DoubleSatisfactionTask
3131
taskName NoLockedFundsTask = I.NoLockedFundsTask
3232
taskName NoLockedFundsLightTask = I.NoLockedFundsLightTask
3333
taskName CrashToleranceTask = I.CrashToleranceTask

dapps-certification-helpers/data/outputs.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
project = origProject.appendModule ({ lib, ... }: {
1212
cabalProject = lib.mkForce (builtins.readFile "${modifiedCabalProject}/cabal.project");
13-
cabalProjectLocal = lib.mkForce (origProject.args.cabalProjectLocal + ''
13+
cabalProjectLocal = lib.mkForce ((x : if isNull x then "" else x)(origProject.args.cabalProjectLocal) + ''
1414
source-repository-package
1515
type: git
1616
location: https://github.com/input-output-hk/plutus-apps

dapps-certification-helpers/src/IOHK/Certification/Actions.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ generateFlake backend addLogEntry ghAccessTokenM flakeref output = withEvent bac
6666
hPutStrLn h " inputs = {"
6767
hPutStr h " repo = " >> writeNix h lock >> hPutStrLn h ";"
6868
hPutStrLn h " plutus-apps = {"
69-
hPutStrLn h " url = \"github:input-output-hk/plutus-apps/1651d36a0f6458e7d2326d57dbc1baa00034d70d\";"
69+
hPutStrLn h " url = \"github:input-output-hk/plutus-apps/68efca7eda4afd1c14698adf697d70acb5a489e2\";"
7070
hPutStrLn h " flake = false;"
7171
hPutStrLn h " };"
7272
hPutStrLn h " dapps-certification = {"

dapps-certification-interface/src/IOHK/Certification/Interface.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import Data.Char (isAlphaNum)
1818
data CertificationTaskName
1919
= UnitTestsTask
2020
| StandardPropertyTask
21-
| DoubleSatisfactionTask
21+
-- | DoubleSatisfactionTask
2222
| NoLockedFundsTask
2323
| NoLockedFundsLightTask
2424
| CrashToleranceTask
@@ -34,7 +34,7 @@ instance ToSchema CertificationTaskName where
3434
renderTask :: CertificationTaskName -> Either String Text
3535
renderTask UnitTestsTask = Right "unit-tests"
3636
renderTask StandardPropertyTask = Right "standard-property"
37-
renderTask DoubleSatisfactionTask = Right "double-satisfaction"
37+
-- renderTask DoubleSatisfactionTask = Right "double-satisfaction"
3838
renderTask NoLockedFundsTask = Right "no-locked-funds"
3939
renderTask NoLockedFundsLightTask = Right "no-locked-funds-light"
4040
renderTask CrashToleranceTask = Right "crash-tolerance"
@@ -58,7 +58,7 @@ instance FromJSON CertificationTaskName where
5858
known = flip (withText "CertificationTaskName") v \nm ->
5959
if | nm == "unit-tests" -> pure UnitTestsTask
6060
| nm == "standard-property" -> pure StandardPropertyTask
61-
| nm == "double-satisfaction" -> pure DoubleSatisfactionTask
61+
-- | nm == "double-satisfaction" -> pure DoubleSatisfactionTask
6262
| nm == "no-locked-funds" -> pure NoLockedFundsTask
6363
| nm == "no-locked-funds-light" -> pure NoLockedFundsLightTask
6464
| nm == "crash-tolerance" -> pure CrashToleranceTask

0 commit comments

Comments
 (0)