0.5.1-gm14
Added
- Add
--wait-after-commit
flag towallet inscribe
to have ord wait for the commit transaction to confirm before sending reveal transaction(s).
Note that it could take a long time for the commit transaction to commit, and the reveal transactions aren't broadcast until it does. If you are running ord over an ssh connection and the connection times out while it is waiting the ord process will probably be killed and the reveal transactions will never be broadcast, leaving the commit outputs stranded.
To prevent this, you can use --dump
to cause all the raw transactions to be printed to standard output before anything is broadcast. Redirect the output to a file to capture it:
ord wallet inscribe --dump --fee-rate 10 --wait-for-commit > ord.log
If you are using --dump like that you can also use --no-backup
to avoid the slow process of saving all the recovery keys to the wallet because they will be written to standard output.
Also, if running ord using an ssh connection you might consider running it inside a screen
session so that it will survive even if the ssh connection times out.