-
Notifications
You must be signed in to change notification settings - Fork 24
added a variable mintLimit #111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,10 +58,12 @@ def create_tokens(ds, **kwargs): | |
| walletName = kwargs['dag_run'].conf.get('walletName') | ||
| entityId = kwargs['dag_run'].conf.get('entityId') | ||
| dryRun = kwargs['dag_run'].conf.get('dryRun') | ||
| mintLimit = kwards['dag_run'].conf.get('mintLimit') | ||
| # print them out | ||
| print('walletName:', walletName) | ||
| print('entityId:', entityId) | ||
| print('dryRun:', dryRun) | ||
| print('mintLimit:', mintLimit) | ||
| # check if wallet exists | ||
| if walletName is None: | ||
| print('walletName is None') | ||
|
|
@@ -72,7 +74,10 @@ def create_tokens(ds, **kwargs): | |
| if dryRun is None: | ||
| print('dryRun is None') | ||
| return | ||
|
|
||
| if mintLimit is None: | ||
| print('mintLimit is None') | ||
| return | ||
|
|
||
| result = 'pending' | ||
| db = PostgresHook(postgres_conn_id='postgres_default') | ||
| connection = db.get_conn() | ||
|
|
@@ -108,15 +113,15 @@ def create_tokens(ds, **kwargs): | |
| AND active = true | ||
| AND approved = true | ||
| AND token_id IS NULL | ||
| LIMIT 3000 | ||
| LIMIT .format(mintLimit) | ||
|
||
| """.format(entityId)) | ||
| trees = cursor.fetchall() | ||
|
|
||
| print('Trees found', len(trees)) | ||
|
|
||
| # check trees length < 3000 | ||
| if len(trees) < 3000: | ||
| print('Not more trees') | ||
| # check trees length < mintLimit | ||
| if len(trees) < mintLimit: | ||
| print('Less tokens than the mintLimit will be minted') | ||
| remaining = False | ||
|
|
||
| # for each tree, create a token | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know the busines logic behind this but I will recommend setting a default
minLimitrather than exiting the job whenminLimitisNone.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
business logic works better with a limit every time. that is fine