Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
go mod tidy

Tips & Tricks

Tagging

...

...

...

Tagging workflow

  1. Release candidate: tag with lightweight tag (do not include -a)

Code Block
languagebash
git tag v2.9.0
git push origin --tags
  1. Release:

    1. Remove tag (both remote and local)

    2. Tag with annotated tag

Code Block
languagebash
git push origin :refs/tags/v2.9.0-rc1
git tag --delete v2.9.0-rc1
git tag -fa v2.9.0 -m "Version 2.9.0"
git push origin --tags

Account Information

To get account info run

Code Block
languagebash
./clio -u http://127.0.0.1:8889 get account fio.treasury
./clio.sh get account fio.treasury

To compare account info between testnet and localnet, run

Code Block
languagebash
./clio -u http://52.35.164.8:8888 get account fio.treasury

...


./clio.sh get account fio.treasury

Troubleshooting

Database Dirty Flag

...