OCamlPro / freeton_wallet

The 'ft' tool is a multi-account terminal wallet for the Free TON blockchain. It is based on the freeton_ocaml_sdk.
https://ocamlpro.github.io/freeton_wallet
Other
14 stars 9 forks source link

ft client does not generate correct config for sandbox switches #61

Closed NoamDev closed 2 years ago

NoamDev commented 2 years ago

to generate config it calls home/noam/.ft/bin/tonos-cli --config /home/noam/.ft/sandbox1/tonos-cli.config config --url http://0.0.0.0:7081 However, the correct way to do that is: home/noam/.ft/bin/tonos-cli --config /home/noam/.ft/sandbox1/tonos-cli.config --url http://0.0.0.0:7081 config (The url should be before the config subcommand). Otherwise the port numebr will be lost.