Beispiel #1
0
        public async Task TestGetListUnspent()
        {
            ApiResponse response = await UtxoApi.ListUnspent(2, 99999, null);

            Assert.IsFalse(response.HasError);
            List <UnspentUtxo> result = response.GetResult <List <UnspentUtxo> >();

            Assert.IsNotNull(result);
        }
Beispiel #2
0
        public Result <List <UnspentUtxo> > ListUnspent()
        {
            ApiResponse response = UtxoApi.ListUnspent(MINCONFIRMATIONS).Result;

            return(base.GetResult <List <UnspentUtxo> >(response));
        }