private bool CanMakeTx()
 {
     if (BTx == null || ReceiveList.Select(x => x.HasErrors).Contains(true))
     {
         return(false);
     }
     else
     {
         return(true);
     }
 }
        private bool CanMakeTx()
        {
            if (SendAddressList.Count == 0 || SelectedUTXOs.Count == 0 || ReceiveList.Count == 0)
            {
                return(false);
            }
            if (SendAddressList.Select(x => x.HasErrors).Contains(true) || ReceiveList.Select(x => x.HasErrors).Contains(true))
            {
                return(false);
            }
            if (Fee < 0)
            {
                return(false);
            }

            return(true);
        }