Skip to content

Commit

Permalink
Fixed invalid dict key. Fixes #59.
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed Sep 17, 2024
1 parent 03a02a9 commit 112a45f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nomadnet/NomadNetworkApp.py
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ def applyConfig(self):
self.lxmf_sync_limit = None

if option == "required_stamp_cost":
value = self.config["node"]["node_name"]
value = self.config["client"][option]
if value.lower() == "none":
self.required_stamp_cost = None
else:
Expand Down

0 comments on commit 112a45f

Please sign in to comment.