URI: 
       t(minor) rename class: StoredAttr -> StoredObject - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 0a9e7cb04e45981acdd191f2143b993073254af8
   DIR parent 7507942b7a162cacebc9616375227948aa7044be
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Tue,  4 Feb 2020 13:34:57 +0100
       
       (minor) rename class: StoredAttr -> StoredObject
       
       Diffstat:
         M electrum/lnutil.py                  |      12 ++++++------
       
       1 file changed, 6 insertions(+), 6 deletions(-)
       ---
   DIR diff --git a/electrum/lnutil.py b/electrum/lnutil.py
       t@@ -39,14 +39,14 @@ def ln_dummy_address():
            return redeem_script_to_address('p2wsh', '')
        
        
       -class StoredAttr:
       +class StoredObject:
        
            def to_json(self):
                return dict(vars(self))
        
        
        @attr.s
       -class OnlyPubkeyKeypair(StoredAttr):
       +class OnlyPubkeyKeypair(StoredObject):
            pubkey = attr.ib(type=bytes)
        
        @attr.s
       t@@ -54,7 +54,7 @@ class Keypair(OnlyPubkeyKeypair):
            privkey = attr.ib(type=bytes)
        
        @attr.s
       -class Config(StoredAttr):
       +class Config(StoredObject):
            # shared channel config fields
            payment_basepoint = attr.ib(type=OnlyPubkeyKeypair)
            multisig_key = attr.ib(type=OnlyPubkeyKeypair)
       t@@ -83,13 +83,13 @@ class RemoteConfig(Config):
            current_per_commitment_point = attr.ib(default=None, type=bytes)
        
        @attr.s
       -class FeeUpdate(StoredAttr):
       +class FeeUpdate(StoredObject):
            rate = attr.ib(type=int)  # in sat/kw
            ctn_local = attr.ib(default=None, type=int)
            ctn_remote = attr.ib(default=None, type=int)
        
        @attr.s
       -class ChannelConstraints(StoredAttr):
       +class ChannelConstraints(StoredObject):
            capacity = attr.ib(type=int)
            is_initiator = attr.ib(type=bool)
            funding_txn_minimum_depth = attr.ib(type=int)
       t@@ -102,7 +102,7 @@ class ScriptHtlc(NamedTuple):
        
        # FIXME duplicate of TxOutpoint in transaction.py??
        @attr.s
       -class Outpoint(StoredAttr):
       +class Outpoint(StoredObject):
            txid = attr.ib(type=str)
            output_index = attr.ib(type=int)