-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GetRawMemPool(true) throws exception #115
Comments
Which Bitcoin Core version you're using? Also, can you send us the stack trace of the exception? |
I'm using 0.18.0 I'm a starter dev and don't know how to make a stack trace :( static public void GetRawMempoolLocalNode()
If I call GetRawMemPool without a parameter then I get results (a list of txid's). |
That's totally fine, we're more than happy to help 👍 — So, in your Or do a That is, catch (Exception exception)
{
var err = exception.ToString();
// What is the value of `err`?
} or catch (Exception exception)
{
System.Console.WriteLine(exception.ToString());
// What gets printed in the console?
} |
System.Exception: Unkown property: fees in GetRawMemPool() |
When calling GetRawMemPool(true) it throws this exception:
{"Unkown property: fees in GetRawMemPool()"}
The text was updated successfully, but these errors were encountered: