mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-08-28 07:51:33 +00:00
more test fixes
This commit is contained in:
parent
75d1fa585c
commit
e8fe1cd14d
1 changed files with 6 additions and 6 deletions
|
@ -61,8 +61,8 @@ class Validator(dict):
|
||||||
|
|
||||||
# override these
|
# override these
|
||||||
current_version = None
|
current_version = None
|
||||||
versions = None
|
versions = {}
|
||||||
migrations = None
|
migrations = []
|
||||||
|
|
||||||
# built in commands
|
# built in commands
|
||||||
DO_NOTHING = "do_nothing"
|
DO_NOTHING = "do_nothing"
|
||||||
|
@ -192,7 +192,7 @@ class LBCFeeValidator(Validator):
|
||||||
(Validator.REQUIRE, 'address', skip_validate),
|
(Validator.REQUIRE, 'address', skip_validate),
|
||||||
]
|
]
|
||||||
|
|
||||||
FEE_MIGRATIONS = None
|
FEE_MIGRATIONS = []
|
||||||
|
|
||||||
current_version = CURRENT_FEE_VERSION
|
current_version = CURRENT_FEE_VERSION
|
||||||
versions = FEE_REVISIONS
|
versions = FEE_REVISIONS
|
||||||
|
@ -213,7 +213,7 @@ class BTCFeeValidator(Validator):
|
||||||
(Validator.REQUIRE, 'address', skip_validate),
|
(Validator.REQUIRE, 'address', skip_validate),
|
||||||
]
|
]
|
||||||
|
|
||||||
FEE_MIGRATIONS = None
|
FEE_MIGRATIONS = []
|
||||||
|
|
||||||
current_version = CURRENT_FEE_VERSION
|
current_version = CURRENT_FEE_VERSION
|
||||||
versions = FEE_REVISIONS
|
versions = FEE_REVISIONS
|
||||||
|
@ -234,7 +234,7 @@ class USDFeeValidator(Validator):
|
||||||
(Validator.REQUIRE, 'address', skip_validate),
|
(Validator.REQUIRE, 'address', skip_validate),
|
||||||
]
|
]
|
||||||
|
|
||||||
FEE_MIGRATIONS = None
|
FEE_MIGRATIONS = []
|
||||||
|
|
||||||
current_version = CURRENT_FEE_VERSION
|
current_version = CURRENT_FEE_VERSION
|
||||||
versions = FEE_REVISIONS
|
versions = FEE_REVISIONS
|
||||||
|
@ -256,7 +256,7 @@ class LBRYFeeValidator(Validator):
|
||||||
(Validator.OPTIONAL, 'LBC', LBCFeeValidator.validate),
|
(Validator.OPTIONAL, 'LBC', LBCFeeValidator.validate),
|
||||||
]
|
]
|
||||||
|
|
||||||
CURRENCY_MIGRATIONS = None
|
CURRENCY_MIGRATIONS = []
|
||||||
|
|
||||||
current_version = CURRENT_CURRENCY_VERSION
|
current_version = CURRENT_CURRENCY_VERSION
|
||||||
versions = CURRENCY_REVISIONS
|
versions = CURRENCY_REVISIONS
|
||||||
|
|
Loading…
Add table
Reference in a new issue