Merge remote-tracking branch 'origin/main' into ad_space_update

This commit is contained in:
ben
2022-11-23 16:08:19 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -260,7 +260,7 @@
dense
v-model.number="formDialog.data.price_per_ticket"
type="number"
label="Price per ticket "
label="Sats per ticket "
></q-input>
</div>
</div>

View File

@@ -60,7 +60,7 @@ async def from_wallet(from_user):
wallet = await create_wallet(user_id=user.id, wallet_name="test_wallet_from")
await credit_wallet(
wallet_id=wallet.id,
amount=99999999,
amount=999999999,
)
yield wallet
@@ -77,7 +77,7 @@ async def to_wallet(to_user):
wallet = await create_wallet(user_id=user.id, wallet_name="test_wallet_to")
await credit_wallet(
wallet_id=wallet.id,
amount=99999999,
amount=999999999,
)
yield wallet