removed all but one extension, so we can focus on core

This commit is contained in:
Ben Arc
2021-08-16 18:12:48 +01:00
parent afc2b78a25
commit 9c313586bd
274 changed files with 0 additions and 26032 deletions
-35
View File
@@ -1,35 +0,0 @@
from sqlite3 import Row
from typing import NamedTuple
class Wallets(NamedTuple):
id: str
user: str
masterpub: str
title: str
address_no: int
balance: int
@classmethod
def from_row(cls, row: Row) -> "Wallets":
return cls(**dict(row))
class Mempool(NamedTuple):
user: str
endpoint: str
@classmethod
def from_row(cls, row: Row) -> "Mempool":
return cls(**dict(row))
class Addresses(NamedTuple):
id: str
address: str
wallet: str
amount: int
@classmethod
def from_row(cls, row: Row) -> "Addresses":
return cls(**dict(row))