Merge pull request #20 from tvman99/fix-week3-solution

fixed incorrect datum of give tx
This commit is contained in:
Lars Brünjes 2021-05-25 21:30:56 +02:00 committed by GitHub
commit 82a07c6bef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -88,8 +88,8 @@ give :: (HasBlockchainActions s, AsContractError e) => GiveParams -> Contract w
give gp = do
pkh <- pubKeyHash <$> ownPubKey
let dat = VestingDatum
{ beneficiary1 = gpBeneficiary gp
, beneficiary2 = pkh
{ beneficiary1 = pkh
, beneficiary2 = gpBeneficiary gp
, deadline = gpDeadline gp
}
tx = mustPayToTheScript dat $ Ada.lovelaceValueOf $ gpAmount gp