Пример #1
0
        public void TestGenerator()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero);

            Assert.IsNotNull(account);
        }
Пример #2
0
        public void TestGetKey()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero);

            Assert.AreEqual(null, account.GetKey());
        }
Пример #3
0
        public void TestGetHasKey()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero);

            Assert.AreEqual(false, account.HasKey);
        }
Пример #4
0
        public void TestGenerator()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero, ProtocolSettings.Default);

            Assert.IsNotNull(account);
        }
Пример #5
0
        public void TestGetKey()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero, ProtocolSettings.Default);

            Assert.AreEqual(null, account.GetKey());
        }
Пример #6
0
        public void TestGetHasKey()
        {
            UserWalletAccount account = new UserWalletAccount(UInt160.Zero, ProtocolSettings.Default);

            Assert.AreEqual(false, account.HasKey);
        }