-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79cc7eb
commit c436c72
Showing
13 changed files
with
97 additions
and
55 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
FROM dipdup/dipdup:2.0.0 | ||
FROM dipdup/dipdup:2.0.1 | ||
COPY demo_hic_et_nunc /home/dipdup/demo_hic_et_nunc |
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,2 +1,2 @@ | ||
FROM dipdup/dipdup:2.0.0 | ||
FROM dipdup/dipdup:2.0.1 | ||
COPY demo_quipuswap /home/dipdup/demo_quipuswap |
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,2 +1,2 @@ | ||
FROM dipdup/dipdup:2.0.0 | ||
FROM dipdup/dipdup:2.0.1 | ||
COPY demo_registrydao /home/dipdup/demo_registrydao |
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,2 +1,2 @@ | ||
FROM dipdup/dipdup:2.0.0 | ||
FROM dipdup/dipdup:2.0.1 | ||
COPY demo_tezos_domains /home/dipdup/demo_tezos_domains |
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,2 +1,2 @@ | ||
FROM dipdup/dipdup:2.0.0 | ||
FROM dipdup/dipdup:2.0.1 | ||
COPY demo_tezos_domains_big_map /home/dipdup/demo_tezos_domains_big_map |
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,2 +1,2 @@ | ||
FROM dipdup/dipdup:2.0.0 | ||
FROM dipdup/dipdup:2.0.1 | ||
COPY demo_tzbtc /home/dipdup/demo_tzbtc |
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,2 +1,2 @@ | ||
FROM dipdup/dipdup:2.0.0 | ||
FROM dipdup/dipdup:2.0.1 | ||
COPY demo_tzcolors /home/dipdup/demo_tzcolors |
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 |
---|---|---|
|
@@ -9,4 +9,4 @@ | |
'0.1': False, | ||
'1.0': False, | ||
'1.1': True, | ||
} | ||
} |
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,4 +1,14 @@ | ||
import logging | ||
|
||
from dipdup.cli import cli | ||
from dipdup.exceptions import DipDupError | ||
|
||
if __name__ == '__main__': | ||
cli(prog_name='dipdup') # type: ignore | ||
try: | ||
cli(prog_name='dipdup', standalone_mode=False) # type: ignore | ||
except KeyboardInterrupt: | ||
pass | ||
except DipDupError as e: | ||
logging.critical(e.__repr__()) | ||
logging.info(e.format()) | ||
quit(e.exit_code) |
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