Skip to content

Commit

Permalink
Update PRNG type
Browse files Browse the repository at this point in the history
  • Loading branch information
jelilakjaly committed Apr 30, 2024
1 parent 26ca815 commit e1e95f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/aiken.ak
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ pub type Option<a> {
///
/// A type that represent Pseudo-random generated values.
pub type PRNG {
Seeded { seed: Int, choices: List<Int> }
Replayed { choices: List<Int> }
Seeded { seed: ByteArray, choices: ByteArray }
Replayed { cursor: Int, choices: ByteArray }
}

/// <small>Minimum Plutus Version</small> | <small>1</small>
Expand Down

0 comments on commit e1e95f7

Please sign in to comment.