Skip to content

Commit

Permalink
Updated BIP 0010, fixed offline address-pool issue
Browse files Browse the repository at this point in the history
  • Loading branch information
etotheipi committed Jan 30, 2012
1 parent bff67c2 commit 6ffa636
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions qtdialogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3552,21 +3552,23 @@ def __init__(self, wlt, parent=None, main=None, donateIsDefault=False):
wlt.getBalance('Spendable') > 5*ONE_BTC and not USE_TESTNET:
result = MsgBoxWithDNAA(MSGBOX.Question, 'Please donate!', \
'<i>Armory</i> is the result of over 1,000 hours of development '
'and dozens of late nights. Yet, this software has been '
'given to you for free, to benefit the greater Bitcoin community! '
'and dozens of late nights bug-hunting and testing. Yet, this software '
'has been given to you for free to benefit the greater Bitcoin '
'community! '
'<br><br>However, continued development may not be possible without '
'donations. If you are satisfied with this software, please consider '
'donating what you think this software would be worth as a commercial '
'application.'
'<br><br>Are you willing to donate to the Armory developers? If you '
'<br><br><b>Are you willing to donate to the Armory developers?</b> If you '
'select "Yes," a donation field will be added to your '
'next transaction. You will have the opportunity to remove or change '
'the amount before sending the transaction.', None)

self.main.settings.set('DonateLastPester', loadCount)

if result[0]==True:
self.addDonation(long(0.99 * ONE_BTC))
self.addDonation(ONE_BTC)
self.makeRecipFrame(2)

if result[1]==True:
self.main.settings.set('DonateDNAA', True)
Expand Down

0 comments on commit 6ffa636

Please sign in to comment.