SaplingOutgoingViewingKey constructor

SaplingOutgoingViewingKey(
  1. List<int> inner
)

Implementation

SaplingOutgoingViewingKey(List<int> inner)
  : inner =
        inner
            .exc(
              operation: "SaplingOutgoingViewingKey",
              name: "bytes",
              reason: "Invalid outgoing viewing key bytes length.",
              length: 32,
            )
            .asImmutableBytes;