I'm developing my application that should be able to work with Bitcoin Core via RPC.
Many thanks for your library at first!
I guess I found a bug:
When I call DumpWallet method, exception occured related to newtonsoft json library. In the same time wallet backup file with private keys was succesfully created!
I guess that when you send dumpwallet command, if the operation was successfull, RPC return null and newtonsoft json library didn't recognize it like JSON.
I guess before to call JsonConvert.DeserializeObject method you should to check if it's valid json string, not empty or null.
Hi,
I'm developing my application that should be able to work with Bitcoin Core via RPC. Many thanks for your library at first!
I guess I found a bug:
When I call DumpWallet method, exception occured related to newtonsoft json library. In the same time wallet backup file with private keys was succesfully created!
I guess that when you send dumpwallet command, if the operation was successfull, RPC return null and newtonsoft json library didn't recognize it like JSON.
I guess before to call JsonConvert.DeserializeObject method you should to check if it's valid json string, not empty or null.
Could you check this issue please.
Thanks in advance.