Skip to content

Commit

Permalink
removing unused outcommented code
Browse files Browse the repository at this point in the history
  • Loading branch information
czepluch committed Dec 20, 2016
1 parent 8d4b69f commit f7c99d3
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions raiden/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,14 +283,8 @@ def __init__(self, participant_address, participant_balance, get_block_number):
# 0 is used in the netting contract to represent the lack of a
# transfer, so this value must start at 1
if isinstance(get_block_number, int):
# if get_block_number == 0:
# self.nonce = 1 * (1 * (2 ** 32))
# else:
self.nonce = 1 * (get_block_number * (2 ** 32))
else:
# if get_block_number() == 0:
# self.nonce = 1 * (1 * (2 ** 32))
# else:
self.nonce = 1 * (get_block_number() * (2 ** 32))

# contains the last known message with a valid signature and
Expand Down

0 comments on commit f7c99d3

Please sign in to comment.