Advertisement
kelsos

crash

Oct 2nd, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.35 KB | None | 0 0
  1. Traceback (most recent call last):
  2.   File "/home/kelsos/.virtualenvs/raiden-develop/bin/raiden", line 11, in <module>
  3.     load_entry_point('raiden', 'console_scripts', 'raiden')()
  4.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/__main__.py", line 13, in main
  5.     run(auto_envvar_prefix="RAIDEN")  # pylint: disable=no-value-for-parameter
  6.   File "/home/kelsos/.virtualenvs/raiden-develop/lib/python3.7/site-packages/click/core.py", line 764, in __call__
  7.     return self.main(*args, **kwargs)
  8.   File "/home/kelsos/.virtualenvs/raiden-develop/lib/python3.7/site-packages/click/core.py", line 717, in main
  9.     rv = self.invoke(ctx)
  10.   File "/home/kelsos/.virtualenvs/raiden-develop/lib/python3.7/site-packages/click/core.py", line 1114, in invoke
  11.     return Command.invoke(self, ctx)
  12.   File "/home/kelsos/.virtualenvs/raiden-develop/lib/python3.7/site-packages/click/core.py", line 956, in invoke
  13.     return ctx.invoke(self.callback, **ctx.params)
  14.   File "/home/kelsos/.virtualenvs/raiden-develop/lib/python3.7/site-packages/click/core.py", line 555, in invoke
  15.     return callback(*args, **kwargs)
  16.   File "/home/kelsos/.virtualenvs/raiden-develop/lib/python3.7/site-packages/click/decorators.py", line 17, in new_func
  17.     return f(get_current_context(), *args, **kwargs)
  18.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/ui/cli.py", line 568, in run
  19.     app = runner.run()
  20.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/ui/runners.py", line 243, in run
  21.     return self._start_services()
  22.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/ui/runners.py", line 92, in _start_services
  23.     app_ = run_app(**self._options)
  24.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/ui/app.py", line 353, in run_app
  25.     raiden_app.start()
  26.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/app.py", line 137, in start
  27.     self.raiden.start()
  28.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/raiden_service.py", line 346, in start
  29.     node_address=self.address,
  30.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/storage/wal.py", line 76, in restore_to_state_change
  31.     wal.state_manager.dispatch(unapplied_state_changes)
  32.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/architecture.py", line 260, in dispatch
  33.     iteration = self.state_transition(next_state, state_change)
  34.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/node.py", line 1184, in state_transition
  35.     iteration = handle_state_change(chain_state, state_change)
  36.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/node.py", line 874, in handle_state_change
  37.     iteration = handle_token_network_action(chain_state, state_change)
  38.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/node.py", line 543, in handle_token_network_action
  39.     pseudo_random_generator=chain_state.pseudo_random_generator,
  40.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/token_network.py", line 413, in state_transition
  41.     pseudo_random_generator=pseudo_random_generator,
  42.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/token_network.py", line 167, in handle_balance
  43.     pseudo_random_generator=pseudo_random_generator,
  44.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/token_network.py", line 61, in subdispatch_to_channel_by_id
  45.     pseudo_random_generator=pseudo_random_generator,
  46.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/channel.py", line 2573, in state_transition
  47.     iteration = handle_channel_deposit(channel_state, state_change)
  48.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/channel.py", line 2380, in handle_channel_deposit
  49.     events = update_fee_schedule_after_balance_change(channel_state, state_change.fee_config)
  50.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/channel.py", line 2357, in update_fee_schedule_after_balance_change
  51.     proportional_imbalance_fee=proportional_imbalance_fee,
  52.   File "/home/kelsos/development/github/raiden-network/raiden/raiden/transfer/mediated_transfer/mediation_fee.py", line 155, in calculate_imbalance_fees
  53.     a = c / o ** b
  54. OverflowError: (34, 'Numerical result out of range')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement