GRPH-46-AddQuitCommandToCliWallet - Add Quit command to CLI Wallet #9
Loading…
Reference in a new issue
No description provided.
Delete branch "feature/GRPH-46"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Add
quitcommand to the CLI Wallet.Required for https://github.com/peerplays-network/peerplays/pull/90.
Backport of the Bitshares https://github.com/bitshares/bitshares-fc/pull/63
Created by: oxarbitrage
There were some additional problems with this command in bitshares iirc.
Check for example: https://github.com/bitshares/bitshares-fc/blob/master/src/rpc/cli.cpp#L114
I will make some tests but i think something could be missing for the command to work properly.
@oxarbitrage , Bitshares has much more complex CLI than Peerplays, that's why it has more complex exit procedure. In particular, the code you are talking about is added in https://github.com/bitshares/bitshares-core/pull/1695, that is not backported by the Peerplays. We should add this code after we adopt additional CLI features from Bitshares (complex command completion and command history). I've tested the current implementation and haven't reproduced any issues with CLI wallet exit.
Created by: oxarbitrage
ok, that makes sense. thanks. lets do it then.