SaplingExpandedSpendingKey constructor

SaplingExpandedSpendingKey({
  1. required SaplingSpendAuthorizingKey ask,
  2. required JubJubFr nsk,
  3. required SaplingOutgoingViewingKey ovk,
  4. SaplingFullViewingKey? fvk,
})

Implementation

SaplingExpandedSpendingKey({
  required this.ask,
  required this.nsk,
  required this.ovk,
  SaplingFullViewingKey? fvk,
}) : _fvk = fvk;