Skip to content

Commit

Permalink
revert and set version to 0.17.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
icodeface committed Dec 22, 2017
1 parent 7d77f96 commit aab3074
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def get_address_from_output_script(_bytes):
# 65 BYTES:... CHECKSIG
match = [ opcodes.OP_PUSHDATA4, opcodes.OP_CHECKSIG ]
if match_decoded(decoded, match):
return TYPE_PUBKEY, pubkey_to_address('p2pkh', bh2u(decoded[0][1]))
return TYPE_PUBKEY, bh2u(decoded[0][1])

# Pay-by-Bitcoin-address TxOuts look like:
# DUP HASH160 20 BYTES:... EQUALVERIFY CHECKSIG
Expand Down
4 changes: 2 additions & 2 deletions lib/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ELECTRUM_VERSION = '0.17.4' # version of the client package
PROTOCOL_VERSION = '1.2' # protocol version requested
ELECTRUM_VERSION = '0.17.4.2' # version of the client package
PROTOCOL_VERSION = '1.1' # protocol version requested

# The hash of the mnemonic seed must begin with this
SEED_PREFIX = '01' # Standard wallet
Expand Down

0 comments on commit aab3074

Please sign in to comment.