Esempio n. 1
0
        public static bool IsConfirmed(this IWalletLinkingRequest src)
        {
            if (src == null)
            {
                throw new ArgumentNullException(nameof(src));
            }

            return(src.IsConfirmedInPrivate && src.IsConfirmedInPublic);
        }
Esempio n. 2
0
        public static bool IsApproved(this IWalletLinkingRequest src)
        {
            if (src == null)
            {
                throw new ArgumentNullException(nameof(src));
            }

            return(!string.IsNullOrEmpty(src.PublicAddress) && !string.IsNullOrEmpty(src.Signature));
        }