Files
nutshell/cashu/mint/protocols.py
callebtc f1b621fa90 HTLCs (#325)
* add htlc files

* refactor mint into several components

* add hash lock signatures

* add refund signature checks

* simplify hash lock signature check

* clean up
2023-09-23 19:08:38 +02:00

9 lines
160 B
Python

from typing import Protocol
from ..core.base import MintKeyset, MintKeysets
class SupportsKeysets(Protocol):
keyset: MintKeyset
keysets: MintKeysets