public TezosAccount( string currency, ICurrencies currencies, IHdWallet wallet, IAccountDataRepository dataRepository) : base(currency, currencies, wallet, dataRepository) { var xtz = Xtz; _tezosRevealChecker = new TezosRevealChecker(xtz); _tezosAllocationChecker = new TezosAllocationChecker(xtz); }
public TezosAccount( ICurrencies currencies, IHdWallet wallet, IAccountDataRepository dataRepository) : base(TezosConfig.Xtz, currencies, wallet, dataRepository) { var xtz = Config; _tezosRevealChecker = new TezosRevealChecker(xtz); _tezosAllocationChecker = new TezosAllocationChecker(xtz); AddressLocker = new ResourceLocker <string>(); }