From 49c3cccb05ce8d19e4a72335f047cc2978ac51ae Mon Sep 17 00:00:00 2001 From: Pranav Gaddamadugu Date: Fri, 29 Sep 2023 15:52:25 -0400 Subject: [PATCH] Fix CI --- examples/vote/run.sh | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/examples/vote/run.sh b/examples/vote/run.sh index c1e46cac14..47f75dac5b 100755 --- a/examples/vote/run.sh +++ b/examples/vote/run.sh @@ -20,7 +20,11 @@ echo " ############################################################################### " # Run the `propose` program function -cat ./inputs/propose.in | xargs leo run propose || exit +leo run propose "{ + title: 2077160157502449938194577302446444field, + content: 1452374294790018907888397545906607852827800436field, + proposer: aleo1kkk52quhnxgn2nfrcd9jqk7c9x27c23f2wvw7fyzcze56yahvcgszgttu2 +}" || exit echo " ############################################################################### @@ -36,7 +40,7 @@ echo " ############################################################################### " # Run the `new_ticket` program function -cat ./inputs/new_ticket.in | xargs leo run new_ticket || exit +leo run new_ticket 2264670486490520844857553240576860973319410481267184439818180411609250173817field aleo1mgfq6g40l6zkhsm063n3uhr43qk5e0zsua5aszeq5080dsvlcvxsn0rrau || exit echo " ############################################################################### @@ -52,5 +56,9 @@ echo " ############################################################################### " # Run the `agree` or `disagree` program function -cat ./inputs/agree.in | xargs leo run agree || exit +leo run agree "{ + owner: aleo1mgfq6g40l6zkhsm063n3uhr43qk5e0zsua5aszeq5080dsvlcvxsn0rrau.private, + pid: 2264670486490520844857553240576860973319410481267184439818180411609250173817field.private, + _nonce: 1637267040221574073903539416642641433705357302885235345311606754421919550724group.public +}" || exit #cat ./inputs/disagree.in | xargs leo run disagree || exit