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

Fix Unlock Syntactic Validation #134

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tips/TIP-0018/tip-0018.md
Original file line number Diff line number Diff line change
Expand Up @@ -3726,7 +3726,7 @@ always need to be one *Alias Unlock* referencing a greater index.

#### Alias Unlock Syntactic Validation

- It must hold that 0 ≤ `Alias Reference Unlock Index` < `Max Inputs Count`.
- It must hold that 0 ≤ `Alias Reference Unlock Index` < `Max Inputs Count - 1`.

#### Alias Unlock Semantic Validation

Expand Down Expand Up @@ -3786,7 +3786,7 @@ must hold that i > k. Hence, an <i>NFT Unlock</i> can only reference an *Unlock*

#### NFT Unlock Syntactic Validation

- It must hold that 0 ≤ `NFT Reference Unlock Index` < `Max Inputs Count`.
- It must hold that 0 ≤ `NFT Reference Unlock Index` < `Max Inputs Count - 1`.

#### NFT Unlock Semantic Validation

Expand Down
Loading