@ -229,7 +223,27 @@ class NetworkChoiceLayout(object):
self.checkpoint_height=height
self.checkpoint_value=_hash
self.cph.editingFinished.connect(on_cph)
msg=''.join([
_("Electrum connects to several nodes in order to download block headers and find out the longest blockchain."),""
_("This blockchain is used to verify the transactions sent by your transaction server.")
])
grid.addWidget(QLabel(_('Status')+':'),0,0)
grid.addWidget(QLabel(status),0,1,1,3)
grid.addWidget(HelpButton(msg),0,4)
msg=_('This is the height of your local copy of the blockchain.')
grid.addWidget(QLabel(_("Height")+':'),1,0)
grid.addWidget(QLabel(height_str),1,1)
grid.addWidget(HelpButton(msg),1,4)
msg=''.join([
_('A checkpoint can be used to verify that you are on the correct blockchain.'),'',
_('By default, your checkpoint is the genesis block.'),'\n\n',
_('If you edit the height field, the corresponding block hash will be fetched from your current server.'),'',
_('If you press OK, the checkpoint will be saved, and Electrum will only accept headers from nodes that pass this checkpoint.'),'\n\n',
_('If there is a hard fork, you will have to check the block hash from an independent source, in order to be sure that you are on the desired side of the fork.'),