public async Task GetBlock()
        {
            ApiResponse response = await BlockChainEngineApi.GetBlock("B6D9FD10775254A86E836F211205D8A21D0F3FF3821C9E6F1F99377BFB4DADFA", 1);

            Assert.IsFalse(response.HasError);
            if (response.Result != null)
            {
                BlockInfoOM result = response.GetResult <BlockInfoOM>();
                Assert.IsNotNull(result);
            }
            else
            {
                Assert.IsNull(response.Result);
            }
        }