Cryptocurrency
A cryptocurrency is a digital currency that only has value dependent on those who back it. For security, cryptocurrencies rely on blockchaining: a database organized in such a way that records are kept secure through peer-to-peer networks. Each record is kept within a block, and each block holds a timestamp and link to the block before it. The first cryptocurrency was Bitcoin, implemented in 2009 by Satoshi Nakamoto.
Here are 6,744 public repositories matching this topic...
-
Updated
Dec 20, 2019 - 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.
Currently stratumserver has no unit tests. This will improve the quality and allow future commits to be TDD safe. All units will be tested to ensure the module as a unit itself is tested.
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
Sep 12, 2020 - C++
The blockchain v2 reactor utilizes concurrency to saturate the bottleneck of writing blocks to disk. This concurrency is internal to the reactor where the reactor itself will launch and manage internal state machines running as go-routines. This configuration makes testing difficult as we don't know when messages processed by internal state machines will be processed and when we can assert that th
Describe the enhancement
Could you provide the .devcontainer with full installed dependencies for development and strategy customization?
Thanks!
-
Updated
Jul 30, 2020 - Haskell
-
Updated
May 25, 2020
-
Updated
Jul 19, 2020 - TypeScript
-
Updated
Sep 10, 2020 - C++
-
Updated
Sep 9, 2020 - C#
-
Updated
Aug 14, 2020
-
Updated
Nov 5, 2019 - JavaScript
-
Updated
Sep 10, 2020
Create a bot that watches and archives specified public channels in Status and makes it searchable
User Story
To be able to see the history of the channels (anonymized though), we need a bot that will listen in to a set of public channels and writes their content in a DB. We also need a full-text search in the archive in the same bot.
Imagine http://offsite.chat/html, but on steroids.
-
Updated
Nov 4, 2019 - Go
-
Updated
Sep 12, 2020 - C++
-
Updated
Sep 5, 2020 - Python
-
Updated
Sep 9, 2020 - JavaScript
-
Updated
May 29, 2020
-
Updated
Feb 2, 2020 - JavaScript
-
Updated
Sep 12, 2020 - Python
-
Updated
Sep 9, 2020
-
Updated
Mar 17, 2020 - Go
-
Updated
Jul 19, 2020 - C++
Storing the height in the value is redundant, because consensus states are always stored under a key which includes the height.
I think the only place we use this is here but it should be easy to pass the
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.