electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 123b1b10e5bc19e808c256200390d850c2f38f2e
parent a25f57035401fff1bb87ce417477a8f52d2e9be6
Author: ecdsa <ecdsa@github>
Date:   Mon,  4 Mar 2013 17:19:32 +0100

fixes for pointofsale

Diffstat:
Mplugins/pointofsale.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/plugins/pointofsale.py b/plugins/pointofsale.py @@ -30,10 +30,11 @@ class QR_Window(QWidget): self.setWindowTitle('Electrum - '+_('Invoice')) self.setMinimumSize(800, 250) self.address = '' - self.labe = '' + self.label = '' self.amount = 0 self.setFocusPolicy(QtCore.Qt.NoFocus) + self.merchant_name = config.get('merchant_name', 'Invoice') main_box = QHBoxLayout() self.qrw = QRCodeWidget()