zcashd/qa/rpc-tests/wallet_shieldcoinbase_sapli...

18 lines
479 B
Python
Raw Normal View History

#!/usr/bin/env python3
2018-12-18 12:00:46 -08:00
import inspect
import os
2018-10-05 03:32:22 -07:00
# To keep pyflakes happy
WalletShieldCoinbaseTest = object
cwd = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
exec(open(os.path.join(cwd, 'wallet_shieldcoinbase.py')).read())
class WalletShieldCoinbaseSapling(WalletShieldCoinbaseTest):
def __init__(self):
super(WalletShieldCoinbaseSapling, self).__init__('sapling')
if __name__ == '__main__':
WalletShieldCoinbaseSapling().main()