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

11 lines
308 B
Python
Raw Normal View History

#!/usr/bin/env python3
2018-12-18 12:00:46 -08:00
2020-01-27 18:55:26 -08:00
from wallet_shieldcoinbase import WalletShieldCoinbaseTest
class WalletShieldCoinbaseSapling(WalletShieldCoinbaseTest):
def __init__(self):
super(WalletShieldCoinbaseSapling, self).__init__('sapling')
if __name__ == '__main__':
WalletShieldCoinbaseSapling().main()