Add Sapling support to z_shieldcoinbase

Part of #3216.
This commit is contained in:
Jack Grigg
2018-09-13 23:12:29 +01:00
parent ba63dacbbb
commit 5f91a95641
8 changed files with 194 additions and 57 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python2
import inspect
import os
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()