Compare commits

...

2 commits

Author SHA1 Message Date
Lex Berezhny
4ddd73c33e upgrade ubuntu 2021-12-17 14:59:29 -05:00
Lex Berezhny
f5cd79391f backporting fee per name env var 2021-12-17 14:09:34 -05:00
3 changed files with 5 additions and 2 deletions

View file

@ -97,7 +97,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-16.04
- ubuntu-18.04
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}

View file

@ -1,2 +1,2 @@
__version__ = "0.101.1"
__version__ = "0.101.2"
version = tuple(map(int, __version__.split('.'))) # pylint: disable=invalid-name

View file

@ -191,6 +191,9 @@ class WalletManager:
'data_path': config.wallet_dir,
'tx_cache_size': config.transaction_cache_size
}
if 'LBRY_FEE_PER_NAME_CHAR' in os.environ:
ledger_config['fee_per_name_char'] = int(os.environ.get('LBRY_FEE_PER_NAME_CHAR'))
wallets_directory = os.path.join(config.wallet_dir, 'wallets')
if not os.path.exists(wallets_directory):