Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ddude1 committed Jun 17, 2018
1 parent e2484ae commit ad78f86
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ deploy:
- build/electrum-xuez/dist/electrum-xuez-$ELECTRUM_XUEZ_VERSION-setup-win32.exe
- build/electrum-xuez/dist/electrum-xuez-$ELECTRUM_XUEZ_VERSION-setup-win64.exe
- build/electrum-xuez/bin/Electrum_XUEZ-$ELECTRUM_XUEZ_APK_VERSION-release-unsigned.apk
- build/electrum-xuez/bin/Electrum_XUEZ-$ELECTRUM_XUEZ_APK_VERSION-debug.apk
on:
repo: ddude1/electrum-xuez
tags: true
Expand Down
2 changes: 1 addition & 1 deletion gui/qt/masternode_widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def __init__(self, parent=None):
self.delegate_key_edit.setFont(QFont(util.MONOSPACE_FONT))
self.delegate_key_edit.setPlaceholderText(_('Your masternode\'s private key'))
self.protocol_version_edit = QLineEdit()
self.protocol_version_edit.setText('70201')
self.protocol_version_edit.setText('70940')

self.status_edit = QLineEdit()
self.status_edit.setPlaceholderText(_('Masternode status'))
Expand Down
2 changes: 1 addition & 1 deletion gui/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(self, config, daemon, plugins):
curses.cbreak()
curses.start_color()
curses.use_default_colors()
curses.init_pair(1, curses.COLOR_WHITE, curses.COLOR_BLUE)
curses.init_pair(1, curses.COLOR_WHITE, curses.COLOR_RED)
curses.init_pair(2, curses.COLOR_WHITE, curses.COLOR_CYAN)
curses.init_pair(3, curses.COLOR_BLACK, curses.COLOR_WHITE)
self.stdscr.keypad(1)
Expand Down
Binary file removed icons/navlogo.png
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/masternode.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class MasternodeAnnounce(object):
"""
def __init__(self, alias='', vin=None, addr=NetworkAddress(), collateral_key='', delegate_key='',
sig='', sig_time=0, protocol_version=70201, last_ping=MasternodePing(),
sig='', sig_time=0, protocol_version=70940, last_ping=MasternodePing(),
last_dsq=0, announced=False):
self.alias = alias
if vin is None:
Expand Down
2 changes: 1 addition & 1 deletion lib/tests/test_masternode.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_serialize_protocol_version_70940(self):
'1465161129',
bitcoin.hash_encode(bitcoin.hash_160(bfh('0269e1abb1ffe231ea045068272a06f0fae231d11b11a54225867d89267faa4e23'))),
bitcoin.hash_encode(bitcoin.hash_160(bfh('0269e1abb1ffe231ea045068272a06f0fae231d11b11a54225867d89267faa4e23'))),
'70201',
'70940',
]))
print('7'*50, expected)
print('8'*50, msg)
Expand Down
2 changes: 1 addition & 1 deletion lib/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<p id="reason"></p>
<p id="amount"></p>
<div style="background-color:#7777aa; border-radius: 5px; padding:10px;">
<a style="color:#ffffff; text-decoration:none;" id="paylink" target="_blank">Pay with Dash</a>
<a style="color:#ffffff; text-decoration:none;" id="paylink" target="_blank">Pay with Xuez</a>
</div>
<br/>
<div id="qrcode" align="center"></div>
Expand Down

0 comments on commit ad78f86

Please sign in to comment.