Browse Source

add licence headers to more files

dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
SomberNight 6 years ago
committed by ThomasV
parent
commit
449ec013fe
  1. 8
      electrum/lnbase.py
  2. 7
      electrum/lntransport.py
  3. 4
      electrum/lnutil.py
  4. 4
      electrum/lnwatcher.py
  5. 4
      electrum/lnworker.py

8
electrum/lnbase.py

@ -1,8 +1,8 @@
#!/usr/bin/env python3
"""
Lightning network interface for Electrum
Derived from https://gist.github.com/AdamISZ/046d05c156aaeb56cc897f85eecb3eb8
"""
#
# Copyright (C) 2018 The Electrum developers
# Distributed under the MIT software license, see the accompanying
# file LICENCE or http://www.opensource.org/licenses/mit-license.php
from collections import OrderedDict, defaultdict
import json

7
electrum/lntransport.py

@ -1,3 +1,10 @@
# Copyright (C) 2018 Adam Gibson (waxwing)
# Copyright (C) 2018 The Electrum developers
# Distributed under the MIT software license, see the accompanying
# file LICENCE or http://www.opensource.org/licenses/mit-license.php
# Derived from https://gist.github.com/AdamISZ/046d05c156aaeb56cc897f85eecb3eb8
import hashlib
from asyncio import StreamReader, StreamWriter

4
electrum/lnutil.py

@ -1,3 +1,7 @@
# Copyright (C) 2018 The Electrum developers
# Distributed under the MIT software license, see the accompanying
# file LICENCE or http://www.opensource.org/licenses/mit-license.php
from enum import IntFlag, IntEnum
import json
from collections import namedtuple

4
electrum/lnwatcher.py

@ -1,3 +1,7 @@
# Copyright (C) 2018 The Electrum developers
# Distributed under the MIT software license, see the accompanying
# file LICENCE or http://www.opensource.org/licenses/mit-license.php
import threading
from typing import NamedTuple, Iterable, TYPE_CHECKING
import os

4
electrum/lnworker.py

@ -1,3 +1,7 @@
# Copyright (C) 2018 The Electrum developers
# Distributed under the MIT software license, see the accompanying
# file LICENCE or http://www.opensource.org/licenses/mit-license.php
import asyncio
import os
from decimal import Decimal

Loading…
Cancel
Save