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

More Mary token examples: timelocks & sigs #1987

Merged
merged 2 commits into from
Nov 16, 2020

Commits on Nov 13, 2020

  1. fix timelock upper bound evaluation

    The evaluation of RequireTimeExpire had two problems:
    
    - The comparison of the transaction time to live with the timelock
    expiration should be less than or equal to, not less than.
    What we want is that the transaction interval is contained in the
    timelock interval, possibly equal to.  This is not to be confused with
    the fact that the time to live marks the first slot that the
    transaction is expired.
    - The comparison had the transaction value and the timelock value
    swapped.
    Jared Corduan committed Nov 13, 2020
    Configuration menu
    Copy the full SHA
    9014dc0 View commit details
    Browse the repository at this point in the history
  2. more Mary token examples/tests: timelocks & sigs

    Jared Corduan committed Nov 13, 2020
    Configuration menu
    Copy the full SHA
    2fabb01 View commit details
    Browse the repository at this point in the history