We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 368f4d4 commit c572d66Copy full SHA for c572d66
cic/cli/main.py
@@ -76,7 +76,7 @@
76
# Newer versions of chia should use the modern keys and the version bundled here uses the old keys
77
original_to_json_dict = SpendBundle.to_json_dict
78
def patched_to_json_dict(self, include_legacy_keys: bool = False, exclude_modern_keys: bool = False) -> Dict[str, Any]:
79
- # Call the original method with different args if needed
+ # Call the original method with different defaults
80
return original_to_json_dict(self, include_legacy_keys=include_legacy_keys, exclude_modern_keys=exclude_modern_keys)
81
SpendBundle.to_json_dict = patched_to_json_dict
82
0 commit comments