Exemple #1
0
        public void TestBytesState()
        {
            var input = new CustomContract.BytesInput
            {
                BytesValue = SampleAddress.AddressList[0].ToByteString()
            };

            var output = Contract.TestBytesState(input);

            output.BytesValue.ShouldBe(input.BytesValue);
        }
Exemple #2
0
        public void TestBytesState()
        {
            var input = new CustomContract.BytesInput
            {
                BytesValue = Address.Generate().ToByteString()
            };

            var output = Contract.TestBytesState(input);

            output.BytesValue.ShouldBe(input.BytesValue);
        }