Merge pull request #1338 from joelklabo/dont-mulitply-sats-nip5
Don't Multiply Sat Price by 100 for NIP-5 Verification
This commit is contained in:
commit
a8fa4bd117
|
@ -173,12 +173,17 @@ async def create_address_internal(domain_id: str, data: CreateAddressData) -> Ad
|
|||
async def create_domain_internal(wallet_id: str, data: CreateDomainData) -> Domain:
|
||||
domain_id = urlsafe_short_hash()
|
||||
|
||||
if data.currency != "Satoshis":
|
||||
amount = data.amount * 100
|
||||
else:
|
||||
amount = data.amount
|
||||
|
||||
await db.execute(
|
||||
"""
|
||||
INSERT INTO nostrnip5.domains (id, wallet, currency, amount, domain)
|
||||
VALUES (?, ?, ?, ?, ?)
|
||||
""",
|
||||
(domain_id, wallet_id, data.currency, int(data.amount * 100), data.domain),
|
||||
(domain_id, wallet_id, data.currency, int(amount), data.domain),
|
||||
)
|
||||
|
||||
domain = await get_domain(domain_id)
|
||||
|
|
|
@ -36,12 +36,14 @@ context %} {% block page %}
|
|||
the {{ domain.domain }} domain.
|
||||
</p>
|
||||
<p>
|
||||
The current price is
|
||||
The current price is {% if domain.currency != "Satoshis" %}
|
||||
<b
|
||||
>{{ "{:0,.2f}".format(domain.amount / 100) }} {{ domain.currency }}</b
|
||||
>
|
||||
for an account (if you do not own the domain, the service provider can
|
||||
disable at any time).
|
||||
{% else %}
|
||||
<b>{{ "{}".format(domain.amount) }} {{ domain.currency }}</b>
|
||||
{% endif %} for an account (if you do not own the domain, the service
|
||||
provider can disable at any time).
|
||||
</p>
|
||||
|
||||
<p>After submitting payment, your address will be</p>
|
||||
|
|
Loading…
Reference in New Issue
Block a user