#!/usr/bin/env python2 # Copyright (c) 2016-2020 The Hush developers # Released under the GPLv3 import inspect import os # To keep pyflakes happy WalletShieldCoinbaseTest = object cwd = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))) execfile(os.path.join(cwd, 'wallet_shieldcoinbase.py')) class WalletShieldCoinbaseSapling(WalletShieldCoinbaseTest): def __init__(self): super(WalletShieldCoinbaseSapling, self).__init__('sapling') if __name__ == '__main__': WalletShieldCoinbaseSapling().main()