Skip to content
Snippets Groups Projects
Commit cf3f71da authored by Moul's avatar Moul
Browse files

[fix] #210: Close the client in case of a negative answer to the confirmation

- for tx and cert commands
parent c0bc6b99
No related branches found
No related tags found
2 merge requests!146Merge dev into master branch to complete v0.8.0 development cycle,!115Close the client in case of a negative answer to the confirmation
Pipeline #7381 passed
......@@ -15,6 +15,7 @@ You should have received a copy of the GNU Affero General Public License
along with Silkaj. If not, see <https://www.gnu.org/licenses/>.
"""
import sys
from click import command, argument, echo, confirm
from time import time
from tabulate import tabulate
......@@ -27,6 +28,7 @@ from silkaj.network_tools import ClientInstance, HeadBlock
from silkaj.blockchain_tools import BlockchainParams
from silkaj.license import license_approval
from silkaj.wot import is_member, get_informations_for_identity
from silkaj.constants import SUCCESS_EXIT_STATUS
@command("cert", help="Send certification")
......@@ -128,4 +130,6 @@ async def certification_confirmation(
cert_ends = convert_time(time() + params["sigValidity"], "date")
cert.append(["Valid", cert_begins, "—>", cert_ends])
echo(tabulate(cert, tablefmt="fancy_grid"))
confirm("Do you confirm sending this certification?", abort=True)
if not confirm("Do you confirm sending this certification?"):
await client.close()
sys.exit(SUCCESS_EXIT_STATUS)
......@@ -117,6 +117,9 @@ async def send_transaction(
await handle_intermediaries_transactions(
key, issuer_pubkey, tx_amount, outputAddresses, comment, outputbackchange
)
else:
client = ClientInstance().client
await client.close()
async def transaction_amount(amount, amountUD, allSources):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment