Skip to content
Snippets Groups Projects
Commit a3c6a100 authored by s2191814's avatar s2191814
Browse files

Remove regular wallet creation

parent afbfd583
No related branches found
No related tags found
1 merge request!2Draft: initial user flow for creating a wallet
This commit is part of merge request !2. Comments created here will be created in the context of that merge request.
...@@ -7,16 +7,6 @@ from util import DBManager ...@@ -7,16 +7,6 @@ from util import DBManager
db = DBManager() db = DBManager()
def new_wallet(userId: Union[int, str]) -> Wallet:
"""
Creates a new regular wallet.
userId: name of the wallet
"""
return Wallet.create(name=userId,
network=os.getenv("BTC_NETWORK"),
db_uri=db.db_uri)
def new_multig_wallet(userId: Union[int, str], def new_multig_wallet(userId: Union[int, str],
sigs: int, klist: list[HDKey]) -> WalletKey: sigs: int, klist: list[HDKey]) -> WalletKey:
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment