You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
408 B

8 years ago
//
// LP_unspents.c
// marketmaker
//
// Created by Mac on 5/23/17.
// Copyright © 2017 SuperNET. All rights reserved.
//
#include <stdio.h>
void LPinit()
{
char *retstr;
retstr = iguana_listunspent("KMD","RRyBxbrAPRUBCUpiJgJZYrkxqrh8x5ta9Z");
if ( retstr != 0 )
{
printf("listunspent.(%s)\n",retstr);
free(retstr);
} else printf("null retstr\n");
getchar();
}