Skip to content
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

misc fixes and BTC Order minimum bump to 0.00001 #1070

Closed
wants to merge 9 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
syntax fix
  • Loading branch information
jdogresorg committed Mar 3, 2020
commit f8f8bd78c2856c8bb279fee35ef2ae3c7fc6a55f
2 changes: 1 addition & 1 deletion counterpartylib/lib/messages/dividend.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def validate (db, source, quantity_per_unit, asset, dividend_asset, block_index)

# Calculate dividend quantities
exclude_empty = False
if(util.enabled('zero_quantity_value_adjustment_1')):
if util.enabled('zero_quantity_value_adjustment_1'):
exclude_empty = True
holders = util.holders(db, asset, exclude_empty)
outputs = []
Expand Down