I get back the error program failed Check: LogicSig not supported
Curious if anyone else has run into this and figured it out.
I tried updating and restarting the node but still get the same error.
$ ./update.sh -i -c stable -p ~/Projects/algorand-node -d ~/Projects/algorand-node/testnetdata -n
Current Version = 8589934593
Latest Version = 8589934593
No new version found - forcing install anyway
New version found
Checking for files matching: 'channel/stable/node_stable_darwin-amd64_' in bucket algorand-releases
Update Downloaded to /var/folders/66/tj36f9h922z3ys10vyr7kr7m0000gn/T/tmp.ORroi6TK/8589934593.tar.gz
Expanding update...
Validating update...
Starting the new update script to complete the installation...
... Resuming installation from the latest update script
Current Version = 8589934593
Stopping node...
Stopping node and waiting...
/var/folders/66/tj36f9h922z3ys10vyr7kr7m0000gn/T/tmp.ORroi6TK/a/bin/update.sh: line 223: systemd-escape: command not found
sudo: a password is required
The node was successfully stopped.
Backing up current binary files...
Backing up current data files from /Users/danigrant/Projects/algorand-node/testnetdata...
Installing new binary files...
Installing new data files into /Users/danigrant/Projects/algorand-node/testnetdata...
Copying genesis files locally
Checking for new ledger in /Users/danigrant/Projects/algorand-node/testnetdata
Updating genesis files for network testnet
Applying migration fixups...
Deleting existing log files in /Users/danigrant/Projects/algorand-node/testnetdata
Install complete - restart node manually
DanitheComputer:algorand-node danigrant$ ./goal node stop -d testnetdata
The node was successfully stopped.
DanitheComputer:algorand-node danigrant$ ./goal node start -d testnetdata
Algorand node successfully started!
DanitheComputer:algorand-node danigrant$ ./goal clerk dryrun -d testnetdata/ -t ../algorand-escrow-smart-contract/playground.stxn
program failed Check: LogicSig not supported
Just making sure - did you attempted this before or after the network agreed on the protocol upgrade ? LogicSig not supported
is the expected output prior to protocol upgrade.
Could you verify that your local node has caught up with the upgrade and try again ?
how do you pass in parameters into the dryrun call? The docs say you can use the --argb64 flag to pass in base64 encoded arguments, what should be the format of the arguments before you base64 encode them?
can you pass in an opcode dynamically as a parameter? can i pass in dynamically whether the opcode should be + or - ? The reason i want to do that is there isn’t negative number support so I want to let the person who invokes the function declare whether the next number should be added or subtracted.
the leftmost column is the byte offset within the program of the opcode.
then the operation name.
then after the => on the right hand side is the value the operation pushes onto the stack; if an int then the same value in both decimal and hex; if a byte string then in hex bytes.