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

Minimum fee threshold for unconfirmed transactions #89

Open
3 tasks
chill117 opened this issue Jan 17, 2018 · 0 comments
Open
3 tasks

Minimum fee threshold for unconfirmed transactions #89

chill117 opened this issue Jan 17, 2018 · 0 comments

Comments

@chill117
Copy link
Member

chill117 commented Jan 17, 2018

A common issue with bitcoin right now (due to high transaction fees) is that payments are accepted (with 0 confirmations) but then the transactions are never confirmed in a block. To mitigate the risk of accepting zero-confirmation transactions we can check each transaction's fee amount before accepting it as a valid payment.

Fees are generally calculated as "number of satoshis per byte" - explanation:

  • "satoshi" - 0.00000001 or 1 / 100,000,000 of a bitcoin
  • "byte" - The total size in bytes of a transaction. Blocks are limited to 1 megabyte of total space. Miners include transactions in a block based on the profitability of the transaction fee per byte.

Tasks:

  • New setting: "Low fee transactions". Select field with the following options:
    • "Accept but show a warning" <-- default
    • "Accept"
    • "Ignore" (i.e reject them)
  • Get statistics about current memory pool ("mempool" - unconfirmed transactions) from a public API - to help calculate the minimum fee threshold.
  • Show minimum fee (satoshis per byte) on the screen with the QR code.
@chill117 chill117 added this to the Phase 2 milestone Feb 12, 2018
@chill117 chill117 modified the milestones: Phase 2, Phase 3 Mar 17, 2018
@chill117 chill117 removed this from the Phase 3 milestone Jan 3, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant