diff --git a/pyproject.toml b/pyproject.toml index 8588b47..b8a2150 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cashu" -version = "0.1.9" +version = "0.1.10" description = "Ecash wallet and mint." authors = ["calle "] license = "MIT" diff --git a/setup.py b/setup.py index 01bb877..d8a0317 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ entry_points = {"console_scripts": ["cashu = cahu.wallet.cashu:cli"]} setuptools.setup( name="cashu", - version="0.1.9", + version="0.1.10", description="Ecash wallet and mint with Bitcoin Lightning support", long_description=long_description, long_description_content_type="text/markdown", diff --git a/tests/test_wallet.py b/tests/test_wallet.py index 9def85f..a77b141 100644 --- a/tests/test_wallet.py +++ b/tests/test_wallet.py @@ -1,10 +1,8 @@ -import asyncio - -from core.helpers import async_unwrap -from core.migrations import migrate_databases -from wallet import migrations -from wallet.wallet import Wallet as Wallet1 -from wallet.wallet import Wallet as Wallet2 +from cashu.core.helpers import async_unwrap +from cashu.core.migrations import migrate_databases +from cashu.wallet import migrations +from cashu.wallet.wallet import Wallet as Wallet1 +from cashu.wallet.wallet import Wallet as Wallet2 SERVER_ENDPOINT = "http://localhost:3338" @@ -29,7 +27,7 @@ async def run_test(): await migrate_databases(wallet1.db, migrations) wallet1.status() - wallet2 = Wallet1(SERVER_ENDPOINT, "data/wallet2", "wallet2") + wallet2 = Wallet2(SERVER_ENDPOINT, "data/wallet2", "wallet2") await migrate_databases(wallet2.db, migrations) wallet2.status()