forked from Chia-Network/chia-blockchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Less log getter setup calls (Chia-Network#6123)
* init * remove whitespace * docs * rem double colon * more type annotation * retrigger timed out test Co-authored-by: wjblanke
- Loading branch information
Showing
8 changed files
with
26 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from typing import Dict | ||
|
||
# The rest of the codebase uses mojos everywhere. Only uses these units | ||
# for user facing interfaces | ||
# The rest of the codebase uses mojos everywhere. | ||
# Only use these units for user facing interfaces. | ||
units: Dict[str, int] = { | ||
"chia": 10 ** 12, # 1 chia (XCH) is 1,000,000,000,000 mojo (1 Trillion) | ||
"chia": 10 ** 12, # 1 chia (XCH) is 1,000,000,000,000 mojo (1 trillion) | ||
"mojo:": 1, | ||
"colouredcoin": 10 ** 3, # 1 coloured coin is 1000 colouredcoin mojos | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters