Skip to content

Commit

Permalink
fix keyword spelling.
Browse files Browse the repository at this point in the history
  • Loading branch information
brainbot-devops committed Aug 14, 2019
1 parent e2b5a34 commit 3b62117
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scenario_player/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,10 @@ def _initialize_nodes(
self.node_controller.initialize_nodes()
node_addresses = self.node_controller.addresses
node_count = len(self.node_controller)
balance_per_nodes = {address: self.client.balance(address) for address in node_addresses}
balance_per_node = {address: self.client.balance(address) for address in node_addresses}
low_balances = {
address: balance
for address, balance in balance_per_nodes.items()
for address, balance in balance_per_node.items()
if balance < NODE_ACCOUNT_BALANCE_MIN
}
if low_balances:
Expand Down

0 comments on commit 3b62117

Please sign in to comment.