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

Adding the actual mining process to the recipes (basic-pow, hybrid-consensus) #433

Merged
merged 11 commits into from
May 11, 2021

Commits on May 4, 2021

  1. Update service.rs

    Add the actual mining process.
    Mhnd3 committed May 4, 2021
    Configuration menu
    Copy the full SHA
    226e1bf View commit details
    Browse the repository at this point in the history
  2. Update service.rs

    Add the actual mining process.
    Mhnd3 committed May 4, 2021
    Configuration menu
    Copy the full SHA
    afd72e7 View commit details
    Browse the repository at this point in the history
  3. minor update service.rs

    Mhnd3 committed May 4, 2021
    Configuration menu
    Copy the full SHA
    5454863 View commit details
    Browse the repository at this point in the history
  4. Update pow consensus lib.rs

    - public "hash_meets_difficulty" function.
    - reduce difficulty due to the use of u8 type as nonce for pow mining.
    Mhnd3 committed May 4, 2021
    Configuration menu
    Copy the full SHA
    6741474 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2021

  1. Configuration menu
    Copy the full SHA
    adb8cf4 View commit details
    Browse the repository at this point in the history
  2. Using the U256 type for nonce

    - since there is no need for a random nonce, the nonce type `H256` was replaced with `U256`.
    - minor changes.
    Mhnd3 committed May 6, 2021
    Configuration menu
    Copy the full SHA
    d30ff01 View commit details
    Browse the repository at this point in the history
  3. Using the U256 type for nonce

    change the nonce type from `H256` to `U256`, as a Hash is not needed as nonce for this implementation.
    Mhnd3 committed May 6, 2021
    Configuration menu
    Copy the full SHA
    f92b37c View commit details
    Browse the repository at this point in the history
  4. Using the U256 type for nonce

    Mhnd3 committed May 6, 2021
    Configuration menu
    Copy the full SHA
    cd70034 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2021

  1. Configuration menu
    Copy the full SHA
    aaf238f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    00e12e8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ac651f6 View commit details
    Browse the repository at this point in the history