Skip to content

Commit

Permalink
[#92] fix pep8 and syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Ola Czerepak committed Feb 28, 2018
1 parent fd10582 commit 7b51bdc
Show file tree
Hide file tree
Showing 835 changed files with 2,418 additions and 2,343 deletions.
11 changes: 6 additions & 5 deletions network/007coin.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
from clove.network.bitcoin import Bitcoin

class Coin007(Bitcoin):

class Coin007(Bitcoin):
"""
Class with all the necessary 007Coin (007) network information based on
https://github.com/007coindev/007coin/blob/master/src/chainparams.cpp
(date of access: 02/19/2018)
"""
name = '007coin'
symbols = ('007', )
seeds = ('46.101.7.165')
seeds = ('46.101.7.165')
port = 11007


class Coin007TestNet(Coin007):
class Coin007TestNet(Coin007):
"""
Class with all the necessary 007Coin (007) network information based on
https://github.com/007coindev/007coin/blob/master/src/chainparams.cpp
(date of access: 02/19/2018)
"""
name = 'test-007coin'
symbols = ('007', )
seeds = ()
port = 21007
seeds = ()
port = 21007
11 changes: 6 additions & 5 deletions network/2give.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
from clove.network.bitcoin import Bitcoin

class TwoGIVE(Bitcoin):

class TwoGIVE(Bitcoin):
"""
Class with all the necessary 2GIVE (2GIVE) network information based on
https://github.com/LittleDuke/2GIVE/blob/master/src/net.cpp
(date of access: 02/19/2018)
"""
name = '2give'
symbols = ('2GIVE', )
seeds = ('seed2.givecoin.io')
seeds = ('seed2.givecoin.io')
port = 6763


class TwoGIVETestNet(TwoGIVE):
class TwoGIVETestNet(TwoGIVE):
"""
Class with all the necessary 2GIVE (2GIVE) network information based on
https://github.com/LittleDuke/2GIVE/blob/master/src/net.cpp
(date of access: 02/19/2018)
"""
name = 'test-2give'
symbols = ('2GIVE', )
seeds = ()
port = 16763
seeds = ()
port = 16763
9 changes: 5 additions & 4 deletions network/365coin.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
from clove.network.bitcoin import Bitcoin

class Three65Coin(Bitcoin):

class Three65Coin(Bitcoin):
"""
Class with all the necessary 365Coin (365) network information based on
https://github.com/365coindev/365/blob/master/src/net.cpp
(date of access: 02/19/2018)
"""
name = '365coin'
symbols = ('365', )
seeds = ('198.199.90.93')
seeds = ('198.199.90.93')
port = 15663


class Three65CoinTestNet(Three65Coin):
class Three65CoinTestNet(Three65Coin):
"""
Class with all the necessary 365Coin (365) network information based on
https://github.com/365coindev/365/blob/master/src/net.cpp
(date of access: 02/19/2018)
"""
name = 'test-365coin'
symbols = ('365', )
seeds = ()
seeds = ()
port = 17778
10 changes: 5 additions & 5 deletions network/808coin.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
from clove.network.bitcoin import Bitcoin


class Eight08Coin(Bitcoin):
class Eight08Coin(Bitcoin):
"""
Class with all the necessary 808Coin (808) network information based on
https://github.com/maxxine/808/blob/master/src/net.cpp
(date of access: 02/19/2018)
"""
name = '808coin'
symbols = ('808', )
seeds = ('dns.808bass.space')
seeds = ('dns.808bass.space')
port = 8087


class Eight08CoinTestNet(Eight08Coin):
class Eight08CoinTestNet(Eight08Coin):
"""
Class with all the necessary 808Coin (808) network information based on
https://github.com/maxxine/808/blob/master/src/net.cpp
(date of access: 02/19/2018)
"""
name = 'test-808coin'
symbols = ('808', )
seeds = ()
port = 6903
seeds = ()
port = 6903
4 changes: 2 additions & 2 deletions network/MMXVI.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ class mMXVI(Bitcoin):
"""
name = 'MMXVI'
symbols = ('MMXVI', )
seeds = ("5.196.67.100")
seeds = ("5.196.67.100")
port = 6503


# Has no Testnet
# Has no Testnet
1 change: 0 additions & 1 deletion network/SPEC.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ class SPEC(Bitcoin):
seeds = ("node.speccoin.com",
"node2.speccoin.com")
port = 4319

8 changes: 4 additions & 4 deletions network/abjcoin.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
from clove.network.bitcoin import Bitcoin


class Abjcoin(Bitcoin):
class Abjcoin(Bitcoin):
"""
Class with all the necessary Abjcoin (ABJ) network information based on
https://github.com/abjcoinblockchain/Abjcoin/blob/master/src/net.cpp
(date of access: 02/17/2018)
"""
name = 'abjcoin'
symbols = ('ABJ', )
seeds = ('209.188.21.177', '199.188.207.212')
seeds = ('209.188.21.177', '199.188.207.212')
port = 29303


class AbjcoinTestNet(Abjcoin):
class AbjcoinTestNet(Abjcoin):
"""
Class with all the necessary Abjcoin (ABJ) network information based on
https://github.com/abjcoinblockchain/Abjcoin/blob/master/src/net.cpp
(date of access: 02/17/2018)
"""
name = 'test-abjcoin'
symbols = ('ABJ', )
seeds = ()
seeds = ()
port = 39303
4 changes: 2 additions & 2 deletions network/abncoin.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ class Abncoin(Bitcoin):
symbols = ('ABN', )
seeds = ("node.walletbuilders.com")
port = 10267
# no testnet

# no testnet
10 changes: 5 additions & 5 deletions network/accoladecoin.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
from clove.network.bitcoin import Bitcoin


class AccoladeCoin(Bitcoin):
class AccoladeCoin(Bitcoin):
"""
Class with all the necessary AccoladeCoin (ACCO) network information based on
https://github.com/AccoladeCoin/accoladecoin-core/blob/master/Accolade-master/src/chainparams.cpp
(date of access: 02/19/2018)
"""
name = 'accoladecoin'
symbols = ('ACCO', )
seeds = ('45.55.85.44', '45.55.169.173', '104.236.230.23', '45.55.248.114')
seeds = ('45.55.85.44', '45.55.169.173', '104.236.230.23', '45.55.248.114')
port = 13117


class AccoladeCoinTestNet(AccoladeCoin):
class AccoladeCoinTestNet(AccoladeCoin):
"""
Class with all the necessary AccoladeCoin (ACCO) network information based on
https://github.com/AccoladeCoin/accoladecoin-core/blob/master/Accolade-master/src/chainparams.cpp
(date of access: 02/19/2018)
"""
name = 'test-accoladecoin'
symbols = ('ACCO', )
seeds = ()
port = 20114
seeds = ()
port = 20114
2 changes: 1 addition & 1 deletion network/aces.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ class Aces(Bitcoin):
name = 'Acesc'
symbols = ('ACES', )
seeds = ('81.4.123.155')
port = 21274
port = 21274
8 changes: 4 additions & 4 deletions network/acescoin.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
from clove.network.bitcoin import Bitcoin


class Aces(Bitcoin):
class Aces(Bitcoin):
"""
Class with all the necessary Aces (ACES) network information based on
https://github.com/aces-coin/AcesCoin/blob/master/src/net.cpp
(date of access: 02/17/2018)
"""
name = 'aces'
symbols = ('ACES', )
seeds = ('81.4.123.155')
seeds = ('81.4.123.155')
port = 21274


class AcesTestNet(Aces):
class AcesTestNet(Aces):
"""
Class with all the necessary Aces (ACES) network information based on
https://github.com/aces-coin/AcesCoin/blob/master/src/net.cpp
(date of access: 02/17/2018)
"""
name = 'test-aces'
symbols = ('ACES', )
seeds = ()
seeds = ()
port = 21275
12 changes: 6 additions & 6 deletions network/acoin.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
from clove.network.bitcoin import Bitcoin


class Acoin(Bitcoin):
class Acoin(Bitcoin):
"""
Class with all the necessary Acoin (ACOIN) network information based on
https://github.com/acoin-project/acoin/blob/master/src/chainparams.cpp
(date of access: 02/19/2018)
"""
name = 'acoin'
symbols = ('ACOIN', )
seeds = ('seed1.a-coin.info', 'seed2.a-coin.info', 'seed3.a-coin.info', 'seed4.a-coin.info',
'seed5.a-coin.info', 'seed6.a-coin.info', 'seed7.a-coin.info', 'seed8.a-coin.info')
seeds = ('seed1.a-coin.info', 'seed2.a-coin.info', 'seed3.a-coin.info', 'seed4.a-coin.info',
'seed5.a-coin.info', 'seed6.a-coin.info', 'seed7.a-coin.info', 'seed8.a-coin.info')
port = 17883


class AcoinTestNet(Acoin):
class AcoinTestNet(Acoin):
"""
Class with all the necessary Acoin (ACOIN) network information based on
https://github.com/acoin-project/acoin/blob/master/src/chainparams.cpp
(date of access: 02/19/2018)
"""
name = 'test-acoin'
symbols = ('ACOIN', )
seeds = ()
port = 27883
seeds = ()
port = 27883
3 changes: 2 additions & 1 deletion network/adcoin.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ class AdCoinTestNet(AdCoin):
(date of access: 02/11/2018)
"""
name = 'test-adcoin'
seeds = ('testnet-seed.adcointools.com', 'seed-b.adcoin.loshan.co.uk', 'dnsseed-testnet.thrasher.io')
seeds = ('testnet-seed.adcointools.com',
'seed-b.adcoin.loshan.co.uk', 'dnsseed-testnet.thrasher.io')
port = 19335
36 changes: 17 additions & 19 deletions network/aerium.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ class Aerium(Bitcoin):
"""
name = 'aerium'
symbols = ('AERM', )
seeds = ("18.216.79.110",
"185.223.31.170",
"45.76.103.65",
"45.63.48.241",
"185.223.30.120",
"128.77.65.71",
"104.238.181.13",
"108.61.181.58",
"45.77.141.139",
"45.76.82.217",
"45.76.84.32",
"45.76.52.41",
"45.63.93.21",
"173.233.72.98")
seeds = ("18.216.79.110",
"185.223.31.170",
"45.76.103.65",
"45.63.48.241",
"185.223.30.120",
"128.77.65.71",
"104.238.181.13",
"108.61.181.58",
"45.77.141.139",
"45.76.82.217",
"45.76.84.32",
"45.76.52.41",
"45.63.93.21",
"173.233.72.98")
port = 44444


class AeriumTestNet(Aerium):
"""
Class with all the necessary Aerium testing network information based on
Expand All @@ -34,6 +34,4 @@ class AeriumTestNet(Aerium):
"""
name = 'test-aerium'
seeds = ("107.22.138.243")
port = 26178


port = 26178
16 changes: 8 additions & 8 deletions network/aerome.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ class AeroMe(Bitcoin):
"""
name = 'aerome'
symbols = ('AM', )
seeds = ("aerome.publicvm.com",
"aerome2.publicvm.com",
"aerome3.publicvm.com",
"aerome4.publicvm.com",
"aerome5.publicvm.com")
seeds = ("aerome.publicvm.com",
"aerome2.publicvm.com",
"aerome3.publicvm.com",
"aerome4.publicvm.com",
"aerome5.publicvm.com")
port = 6221
# Has no testnet


# Has no testnet
9 changes: 4 additions & 5 deletions network/agilereservecoin .py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ class Agilereservecoin(Bitcoin):
"""
name = 'agilereservecoin '
symbols = ('ARC', )
seeds = ("seeds.arc.ie1.cn",
"seed1.arc.ie1.cn",
"seed2.arc.ie1.cn",
"tnseeds.arc.ie1.cn")
seeds = ("seeds.arc.ie1.cn",
"seed1.arc.ie1.cn",
"seed2.arc.ie1.cn",
"tnseeds.arc.ie1.cn")
port = 8888

Loading

0 comments on commit 7b51bdc

Please sign in to comment.