Skip to content
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

Fix mempool summary views rendering #170

Merged
merged 1 commit into from
Nov 26, 2021
Merged

Fix mempool summary views rendering #170

merged 1 commit into from
Nov 26, 2021

Conversation

sickpig
Copy link
Owner

@sickpig sickpig commented Nov 26, 2021

BCHN and BCHU get back a different json to the getmempoolentry RPC
call.

BCHN group fees data in a sub hash:

{
"fees": {
"base": 0.00000220,
"modified": 0.00000220
},
"size": 219,
...
}

Whereas BCHU does not

{
"size": 219,
"fee": 0.00000220,
"modifiedfee": 0.00000220,
...
}

With this change we make the app aware of the different API so that
it can render the mempool summary view properly.

BCHN and BCHU get back a different json to the getmempoolentry RPC
call.

BCHN group fees data in a sub hash:

{
  "fees": {
     "base": 0.00000220,
     "modified": 0.00000220
  },
  "size": 219,
...
}

Whereas BCHU does not

{
  "size": 219,
  "fee": 0.00000220,
  "modifiedfee": 0.00000220,
...
}

With this change we make the app aware of the different API so that
it can render the mempool summary view properly.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant