Bitcoin
Bitcoin is a cryptocurrency developed by Satoshi Nakamoto in 2009. Bitcoin is used as a digital payment system. Rather than use traditional currency (USD, YEN, EURO, etc.) individuals may trade in, or even mine Bitcoin. It is a peer-to-peer system, and transactions may take place between users directly.
Here are 5,641 public repositories matching this topic...
-
Updated
Aug 18, 2020 - Python
-
Updated
Feb 16, 2020 - JavaScript
-
Updated
Sep 22, 2019 - Python
-
Updated
Aug 6, 2020 - Go
-
Updated
Dec 20, 2019 - C#
-
Updated
Aug 26, 2020 - C++
Right now the docs correspond to what's on master. We need docs for each daemon release so developers can see what's available in the version they are using.
https://github.com/jimporter/mike may be helpful.
Background
When a node has multiple private channels with the same peer, the hop hints in their payment requests will be populated with multiple channels. The purpose of these hop hints is to specify the next node's key and indicate the fees and cltv delta needed for route construction.
In pathfinding, due to non-strict forwarding, an LND node paying to this destination will only use the
-
Updated
Jul 30, 2020 - TypeScript
Describe the enhancement
Hi, just registered on github for a quick suggestion. I think it would be great to have an option to set a custom fee when running trade with dry-run enabled in the JSON config.
As for the parameter dry_run_wallet, I'd love to be able to set an option like dry_run_fee.
My strategy is based on small profits, and while I can set the fee in backtesting/hyper
-
Updated
May 25, 2020
-
Updated
Jul 19, 2020 - TypeScript
-
Updated
May 9, 2019 - JavaScript
-
Updated
Aug 14, 2020
-
Updated
Sep 1, 2020 - TypeScript
-
Updated
Aug 2, 2020
-
Updated
Nov 4, 2019 - Go
-
Updated
Aug 31, 2020 - Python
-
Updated
Aug 19, 2020 - JavaScript
-
Updated
May 29, 2020
-
Updated
Feb 2, 2020 - JavaScript
-
Updated
Aug 24, 2020 - Python
Is your feature request related to a problem? Please describe.
To be able to test long running contracts using the Clarity JS SDK, which depend on reaching a certain block-height to simulate the passage of time, there is currently no easy way to mine new blocks to increase said block-height.
This would be helpful to tests contracts such as https://github.com/MarvinJanssen/stackstarter or h
-
Updated
Sep 1, 2020 - Java
-
Updated
Mar 17, 2020 - Go
Created by Satoshi Nakamoto
Released January 3, 2009
Latest release about 1 month ago
- Repository
- bitcoin/bitcoin
- Website
- bitcoin.org/en
- Wikipedia
- Wikipedia


connect_nodes(self.nodes[a], b)is confusing becauseatoself.nodes[a]can be done hidden from the callerThis should be fixed by replacing
connect_nodes(self.nodes[a], b)withself.connect_nodes(a, b)and removing the globalconnect_nodes.