blockchain-core
blockchain-core copied to clipboard
Everything that loaded the rescue block manually seems to have had the wrong vars nonce, but gateways and other nodes that loaded a snap containing the rescue block halted because...
`blockchain_poc_target_v3` module uses `blockchain_ledger_v1:get_hexes_list` which returns the raw count of hexes (in the region regardless of their POC activity); this results in a targeting a lot of potentially stale hotspots....
Some community members have reported that the hex scale calculation factors in known "offline" hotspots (those which haven't had any POC activity for a while dependent on challenge interval variable)....
An XOR filters contents is the hash of a (app_eui, dev_eui) pair. This means every device that added to an OUI needs to squat on a shared EUI pair and...
To add a `git` `pre-commit` hook format verification you can create a file named `pre-commit` in your repo @ `.git/hooks/pre-commit`. With the following content: ``` #!/usr/bin/env bash ./rebar3 fmt --verbose...
Continuation of @Vagabond's work started in https://github.com/helium/blockchain-core/tree/adt/validation-stages . Rebase was messy, so I started from scratch. ## TODO ### general - [ ] `limits.hrl` - [ ] 32, 64 bit...
This issue is meant as a tracker for the various issues and PRs surrounding the speed up and slim down of dispute transactions, and the resolution of the bug that...
it should allow vars to be set, but not create a new group, aligning all consensus members on the next round.
right now we cannot absorb a new group because the validator penalties function needs at least two blocks upon which to function. we should just return no penalties instead.
Now most of the groundwork has been laid for light gateways, it's time to add a way to add them to the chain. For simplicity the plan is to re-use...