From 559efbfbc044441e94b810434ec62940f089f948 Mon Sep 17 00:00:00 2001 From: jackjack-jj Date: Tue, 16 Apr 2013 13:12:23 +0300 Subject: [PATCH] read-only addresses only for encrypted wallets --- pywallet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pywallet.py b/pywallet.py index a9949f9..786df0a 100755 --- a/pywallet.py +++ b/pywallet.py @@ -3101,10 +3101,10 @@ if 'twisted' not in missing_dep: # WI_RadioButton('format', 'hex', 'impf-hex', '', ' Hexadecimal, 64 characters long') + \ - ImportROForm = WI_FormInit('Import a read-only address:', 'Import', 'divformimportro') + \ + ImportROForm = WI_FormInit('Import a read-only address (encrypted wallets only):', 'Import', 'divformimportro') + \ WI_InputText('Wallet Directory: ', 'dir', 'irof-dir', determine_db_dir(), 30) + \ WI_InputText('Wallet Filename:', 'name', 'irof-name', determine_db_name(), 20) + \ - WI_InputText('Public key: ', 'pub', 'irof-pub', '', 40) + \ + WI_InputText('Public key (starting with 04): ', 'pub', 'irof-pub', '', 40) + \ WI_InputText('Label: ', 'label', 'irof-label', '') + \ WI_InputText('Version:', 'vers', 'irof-vers', '0', 1) + \ WI_Submit('Import address', 'ImportDiv', 'irof-close', 'ajaxImportRO') + \