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

Stateful property-tests for the error/failure paths in PoX-4 #4842

Merged
merged 73 commits into from
Jun 25, 2024

Commits on May 21, 2024

  1. feat(pox-4-tests): add check function delegate to PoxCommand-derived …

    …types
    
    - Added import for StackStxSigCommand_Err and StackStxAuthCommand_Err
    - Added StackStxAuthCommand_Err with a custom check function delegate to
      PoxCommands
    - Added StackStxSigCommand_Err with a custom check function delegate to
      PoxCommands
    
    This allows the check function to be parameterized, reducing the need for
    copy-pasting classes.
    
    Note: This is a very work in progress.
    moodmosaic committed May 21, 2024
    Configuration menu
    Copy the full SHA
    050418c View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. feat(pox-4-tests): add check function delegate to PoxCommand-derived …

    …types
    
    - Separate success paths from failure paths to keep pox_Commands.ts focused
      on success cases only. This prevents the file from growing with
      out-of-scope cases.
    
    Note: This is a work in progress.
    moodmosaic committed May 22, 2024
    Configuration menu
    Copy the full SHA
    6f02aeb View commit details
    Browse the repository at this point in the history
  2. Remove command tracking from the command's run method

    The command run tracking will be added to the command's `check` method.
    BowTiedRadone committed May 22, 2024
    Configuration menu
    Copy the full SHA
    04e7fe6 View commit details
    Browse the repository at this point in the history
  3. Pass the incremented burn height when calling stack-stx

    If not passed incremented, the call will result in an `ERR_INVALID_START_BURN_HEIGHT` when being sent at the limit between 2 cycles.
    BowTiedRadone committed May 22, 2024
    Configuration menu
    Copy the full SHA
    a243d3b View commit details
    Browse the repository at this point in the history
  4. Add the unhappy path cases for StackStxXCommand_Err

    This commit:
    - adds 6 unhappy path cases for the `stack-stx` PoX-4 method, 3 for each signing method (authorization or signature)
    - adds a dictionary that contains the PoX-4 error names and the error codes
    - adds the command run tracking inside the `check` method, resulting in displaying all the paths hit and the number of times.
    BowTiedRadone committed May 22, 2024
    Configuration menu
    Copy the full SHA
    7a0c1fd View commit details
    Browse the repository at this point in the history
  5. Remove StackStxXCommand.ts from statistics

    They needed to be excluded as we have removed the command run tracking from the run method.
    BowTiedRadone committed May 22, 2024
    Configuration menu
    Copy the full SHA
    bd159e3 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2024

  1. Add unhappy path for revoke-delegate-stx

    The added unhappy path tries to call revoke-delegate-stx with an address that is not delegating.
    BowTiedRadone committed May 24, 2024
    Configuration menu
    Copy the full SHA
    7405ab0 View commit details
    Browse the repository at this point in the history
  2. Remove RevokeDelegateStxCommand_Err from statistics

    The command run tracking was moved inside the command's check function. No need to report the run using the file name anymore.
    BowTiedRadone committed May 24, 2024
    Configuration menu
    Copy the full SHA
    10d0b9b View commit details
    Browse the repository at this point in the history
  3. Add unhappy path for delegate-stx

    The added unhappy path tries to call delegate-stx with an address that is already delegating.
    BowTiedRadone committed May 24, 2024
    Configuration menu
    Copy the full SHA
    0c83016 View commit details
    Browse the repository at this point in the history
  4. Remove DelegateStxCommand_Err from statistics

    The command run tracking was moved inside the command's check function. No need to report the run using the file name anymore.
    BowTiedRadone committed May 24, 2024
    Configuration menu
    Copy the full SHA
    48b9032 View commit details
    Browse the repository at this point in the history
  5. Use simnet mineBlock inside StackStxAuthCommand_Err

    This commit:
    - includes the authorization and the function call in the same block. It is needed because otherwise, it can result in issuing the authorization for the wrong reward cycle.
    - updates the passed start-burn-ht param, different from the StackStxSigCommand. If not doing it like this, the test fails when the command is called at the limit between 2 reward cycles.
    - removes unnecessary operations: retrieving the reward cycle, retrieving the unlockBurnHeight.
    BowTiedRadone committed May 24, 2024
    Configuration menu
    Copy the full SHA
    b38c224 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. Add the unhappy path cases for StackAggCommitSigCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-aggregation-commit` PoX-4 method, called using a signature.
    - adds the command run tracking inside the `check` method.
    - adds the expected `stack-aggregation-commit` PoX-4 errors to the POX_4_ERRORS dictionary.
    BowTiedRadone committed May 27, 2024
    Configuration menu
    Copy the full SHA
    93bfa6c View commit details
    Browse the repository at this point in the history
  2. Remove StackAggregationCommitSigCommand_Err from statistics

    The command run tracking was moved inside the command's check function. No need to report the run using the file name anymore.
    BowTiedRadone committed May 27, 2024
    Configuration menu
    Copy the full SHA
    16311d8 View commit details
    Browse the repository at this point in the history
  3. Add the unhappy path cases for StackAggCommitAuthCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-aggregation-commit` PoX-4 method, called using an authorization.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 27, 2024
    Configuration menu
    Copy the full SHA
    a8e7ea3 View commit details
    Browse the repository at this point in the history
  4. Remove StackAggregationCommitAuthCommand_Err from statistics

    The command run tracking was moved inside the command's check function. No need to report the run using the file name anymore.
    BowTiedRadone committed May 27, 2024
    Configuration menu
    Copy the full SHA
    b592998 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    41c0386 View commit details
    Browse the repository at this point in the history
  6. Order statistics alphabetically

    This commit improves the unhappy paths execution visibility after the test suite run is complete.
    BowTiedRadone committed May 27, 2024
    Configuration menu
    Copy the full SHA
    788f986 View commit details
    Browse the repository at this point in the history
  7. Add the unhappy path cases for StackAggCommitIndexedSigCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-aggregation-commit-indexed` PoX-4 method, called using a signature.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 27, 2024
    Configuration menu
    Copy the full SHA
    23e6bc1 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. Add the unhappy path cases for StackAggCommitIndexedAuthCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-aggregation-commit-indexed` PoX-4 method, called using an authorization.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 29, 2024
    Configuration menu
    Copy the full SHA
    74b4a92 View commit details
    Browse the repository at this point in the history
  2. Remove all files containing _Err from command tracking

    The command run tracking for the unhappy paths was moved inside the commands' check function. No need to report the run using the file name anymore.
    BowTiedRadone committed May 29, 2024
    Configuration menu
    Copy the full SHA
    91f99db View commit details
    Browse the repository at this point in the history
  3. Add one unhappy path case for StackAggIncreaseCommand_Err

    This commit:
    - adds one unhappy path case for the `stack-aggregation-increase` PoX-4 method, called using an authorization.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 29, 2024
    Configuration menu
    Copy the full SHA
    48a759a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    70990a4 View commit details
    Browse the repository at this point in the history
  5. Add unhappy path cases for DelegateStackStxCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `delegate-stack-stx` PoX-4 method.
    - adds the command run tracking inside the `check` method.
    - adds the expected `delegate-stack-stx` PoX-4 errors to the `POX_4_ERRORS` dictionary.
    - exports the `nextCycleFirstBlock` method from pox_commands, as it is used inside err_Commands.
    BowTiedRadone committed May 29, 2024
    Configuration menu
    Copy the full SHA
    c66e679 View commit details
    Browse the repository at this point in the history
  6. Add unhappy path cases for StackIncreaseSigCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-increase` PoX-4 method, called using a signature.
    - adds the command run tracking inside the `check` method.
    - adds the expected `stack-increase` PoX-4 errors to the `POX_4_ERRORS` dictionary.
    BowTiedRadone committed May 29, 2024
    Configuration menu
    Copy the full SHA
    17fddaf View commit details
    Browse the repository at this point in the history

Commits on May 30, 2024

  1. Add unhappy path cases for StackIncreaseAuthCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-increase` PoX-4 method, called using an authorization.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 30, 2024
    Configuration menu
    Copy the full SHA
    2a7135f View commit details
    Browse the repository at this point in the history
  2. Add unhappy path cases for StackExtendSigCommand_Err

    This commit:
    - adds 5 unhappy path cases for the `stack-increase` PoX-4 method, called using a signature.
    - adds the command run tracking inside the `check` method.
    - adds the expected `stack-extend` PoX-4 errors to the `POX_4_ERRORS` dictionary.
    BowTiedRadone committed May 30, 2024
    Configuration menu
    Copy the full SHA
    9a4f775 View commit details
    Browse the repository at this point in the history
  3. Add unhappy path cases for StackExtendAuthCommand_Err

    This commit:
    - adds 5 unhappy path cases for the `stack-extend` PoX-4 method, called using an authorization.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 30, 2024
    Configuration menu
    Copy the full SHA
    eaf9274 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2024

  1. Add unhappy path cases for DelegateStackExtendCommand_Err

    This commit:
    - adds 4 unhappy path cases for the `delegate-stack-extend` PoX-4 method.
    - adds the command run tracking inside the `check` method.
    - adds the expected `delegate-stack-extend` PoX-4 error to the `POX_4_ERRORS` dictionary.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    be39b1a View commit details
    Browse the repository at this point in the history
  2. feat(pox-4-tests): add check function delegate to PoxCommand-derived …

    …types
    
    - Added import for StackStxSigCommand_Err and StackStxAuthCommand_Err
    - Added StackStxAuthCommand_Err with a custom check function delegate to
      PoxCommands
    - Added StackStxSigCommand_Err with a custom check function delegate to
      PoxCommands
    
    This allows the check function to be parameterized, reducing the need for
    copy-pasting classes.
    
    Note: This is a very work in progress.
    moodmosaic authored and BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    64e2ece View commit details
    Browse the repository at this point in the history
  3. feat(pox-4-tests): add check function delegate to PoxCommand-derived …

    …types
    
    - Separate success paths from failure paths to keep pox_Commands.ts focused
      on success cases only. This prevents the file from growing with
      out-of-scope cases.
    
    Note: This is a work in progress.
    moodmosaic authored and BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    7f4b536 View commit details
    Browse the repository at this point in the history
  4. Remove command tracking from the command's run method

    The command run tracking will be added to the command's `check` method.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    124abd4 View commit details
    Browse the repository at this point in the history
  5. Pass the incremented burn height when calling stack-stx

    If not passed incremented, the call will result in an `ERR_INVALID_START_BURN_HEIGHT` when being sent at the limit between 2 cycles.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    dfb7230 View commit details
    Browse the repository at this point in the history
  6. Add the unhappy path cases for StackStxXCommand_Err

    This commit:
    - adds 6 unhappy path cases for the `stack-stx` PoX-4 method, 3 for each signing method (authorization or signature)
    - adds a dictionary that contains the PoX-4 error names and the error codes
    - adds the command run tracking inside the `check` method, resulting in displaying all the paths hit and the number of times.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    1de982d View commit details
    Browse the repository at this point in the history
  7. Remove StackStxXCommand.ts from statistics

    They needed to be excluded as we have removed the command run tracking from the run method.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    be6966c View commit details
    Browse the repository at this point in the history
  8. Add unhappy path for revoke-delegate-stx

    The added unhappy path tries to call revoke-delegate-stx with an address that is not delegating.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    544382c View commit details
    Browse the repository at this point in the history
  9. Remove RevokeDelegateStxCommand_Err from statistics

    The command run tracking was moved inside the command's check function. No need to report the run using the file name anymore.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    3227bc4 View commit details
    Browse the repository at this point in the history
  10. Add unhappy path for delegate-stx

    The added unhappy path tries to call delegate-stx with an address that is already delegating.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    e7610e3 View commit details
    Browse the repository at this point in the history
  11. Remove DelegateStxCommand_Err from statistics

    The command run tracking was moved inside the command's check function. No need to report the run using the file name anymore.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    232d388 View commit details
    Browse the repository at this point in the history
  12. Use simnet mineBlock inside StackStxAuthCommand_Err

    This commit:
    - includes the authorization and the function call in the same block. It is needed because otherwise, it can result in issuing the authorization for the wrong reward cycle.
    - updates the passed start-burn-ht param, different from the StackStxSigCommand. If not doing it like this, the test fails when the command is called at the limit between 2 reward cycles.
    - removes unnecessary operations: retrieving the reward cycle, retrieving the unlockBurnHeight.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    bdcee6b View commit details
    Browse the repository at this point in the history
  13. Add the unhappy path cases for StackAggCommitSigCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-aggregation-commit` PoX-4 method, called using a signature.
    - adds the command run tracking inside the `check` method.
    - adds the expected `stack-aggregation-commit` PoX-4 errors to the POX_4_ERRORS dictionary.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    190d7a5 View commit details
    Browse the repository at this point in the history
  14. Remove StackAggregationCommitSigCommand_Err from statistics

    The command run tracking was moved inside the command's check function. No need to report the run using the file name anymore.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    b0f8464 View commit details
    Browse the repository at this point in the history
  15. Add the unhappy path cases for StackAggCommitAuthCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-aggregation-commit` PoX-4 method, called using an authorization.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    367e89a View commit details
    Browse the repository at this point in the history
  16. Remove StackAggregationCommitAuthCommand_Err from statistics

    The command run tracking was moved inside the command's check function. No need to report the run using the file name anymore.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    abdf8bd View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    3ab6e61 View commit details
    Browse the repository at this point in the history
  18. Order statistics alphabetically

    This commit improves the unhappy paths execution visibility after the test suite run is complete.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    91a7c43 View commit details
    Browse the repository at this point in the history
  19. Add the unhappy path cases for StackAggCommitIndexedSigCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-aggregation-commit-indexed` PoX-4 method, called using a signature.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    ab686c4 View commit details
    Browse the repository at this point in the history
  20. Add the unhappy path cases for StackAggCommitIndexedAuthCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-aggregation-commit-indexed` PoX-4 method, called using an authorization.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    50475b7 View commit details
    Browse the repository at this point in the history
  21. Remove all files containing _Err from command tracking

    The command run tracking for the unhappy paths was moved inside the commands' check function. No need to report the run using the file name anymore.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    7173ad6 View commit details
    Browse the repository at this point in the history
  22. Add one unhappy path case for StackAggIncreaseCommand_Err

    This commit:
    - adds one unhappy path case for the `stack-aggregation-increase` PoX-4 method, called using an authorization.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    c6ff82d View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    a267a04 View commit details
    Browse the repository at this point in the history
  24. Add unhappy path cases for DelegateStackStxCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `delegate-stack-stx` PoX-4 method.
    - adds the command run tracking inside the `check` method.
    - adds the expected `delegate-stack-stx` PoX-4 errors to the `POX_4_ERRORS` dictionary.
    - exports the `nextCycleFirstBlock` method from pox_commands, as it is used inside err_Commands.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    1bd9c78 View commit details
    Browse the repository at this point in the history
  25. Add unhappy path cases for StackIncreaseSigCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-increase` PoX-4 method, called using a signature.
    - adds the command run tracking inside the `check` method.
    - adds the expected `stack-increase` PoX-4 errors to the `POX_4_ERRORS` dictionary.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    b66b19c View commit details
    Browse the repository at this point in the history
  26. Add unhappy path cases for StackIncreaseAuthCommand_Err

    This commit:
    - adds 3 unhappy path cases for the `stack-increase` PoX-4 method, called using an authorization.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    50bd1b5 View commit details
    Browse the repository at this point in the history
  27. Add unhappy path cases for StackExtendSigCommand_Err

    This commit:
    - adds 5 unhappy path cases for the `stack-increase` PoX-4 method, called using a signature.
    - adds the command run tracking inside the `check` method.
    - adds the expected `stack-extend` PoX-4 errors to the `POX_4_ERRORS` dictionary.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    4c2f3b6 View commit details
    Browse the repository at this point in the history
  28. Add unhappy path cases for StackExtendAuthCommand_Err

    This commit:
    - adds 5 unhappy path cases for the `stack-extend` PoX-4 method, called using an authorization.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    add9d55 View commit details
    Browse the repository at this point in the history
  29. Add unhappy path cases for DelegateStackExtendCommand_Err

    This commit:
    - adds 4 unhappy path cases for the `delegate-stack-extend` PoX-4 method.
    - adds the command run tracking inside the `check` method.
    - adds the expected `delegate-stack-extend` PoX-4 error to the `POX_4_ERRORS` dictionary.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    3f3da16 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    8a3dc45 View commit details
    Browse the repository at this point in the history
  31. Update err_Commands to include the delegatedUntilBurnHt none branch

    This commit adds the undefined check in the `err_Commands` comparisons that involve `delegatedUntilBurnHt`.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    115a385 View commit details
    Browse the repository at this point in the history
  32. Add unhappy path cases for DelegateStackIncreaseCommand_Err

    This commit:
    - adds 4 unhappy path cases for the `delegate-stack-increase` PoX-4 method.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    6eb8eec View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    da87ec8 View commit details
    Browse the repository at this point in the history
  34. Add unhappy path case for DisallowContractCallerCommand_Err

    This commit:
    - adds one unhappy path case for the `disallow-contract-caller` PoX-4 method.
    - adds the command run tracking inside the `check` method.
    BowTiedRadone committed May 31, 2024
    Configuration menu
    Copy the full SHA
    9365892 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. Configuration menu
    Copy the full SHA
    f03bedf View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2024

  1. Fix PoX-4 stateful prop tests comments

    This commit brings typo fixes for all the comments inside the PoX-4 stateful property tests.
    BowTiedRadone committed Jun 10, 2024
    Configuration menu
    Copy the full SHA
    dc9e019 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. Remove types from err_Commands check functions

    This update simplifies the err_Commands generators file.
    BowTiedRadone committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    f460834 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. Add an additional condition inside DelegateStackIncreaseCommand

    The added condition ensures that an active lock does not expire at the end of the current cycle, and avoids the PoX-4 Clarity error 2 - ERR_STACKING_INVALID_LOCK_PERIOD
    BowTiedRadone committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    452d7bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    90d4a2b View commit details
    Browse the repository at this point in the history
  3. Update the err_Commands check functions to return the false first

    This commit refactors all the unhappy path check functions, returning early the false and removing the else branch.
    BowTiedRadone committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    fa5b78f View commit details
    Browse the repository at this point in the history
  4. Update the way firstRewardCycle is calculated

    This commit:
    - simplifies the way firstRewardCycle is calculated, replacing the ternary operator with the max Math method.
    - standardizes the const name of the stacker retrieved from the model.
    BowTiedRadone committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    d10d760 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7c8c540 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    934d554 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3057aaa View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    dbaf000 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    00c0738 View commit details
    Browse the repository at this point in the history