diff --git a/raiden/channel.py b/raiden/channel.py index 08cf333685..2d08c0ba7f 100644 --- a/raiden/channel.py +++ b/raiden/channel.py @@ -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