Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -1689,7 +1689,7 @@ fn host_ed25519_batch_verify(
// To verify a batch of ed25519 signatures we need to provide an RNG source.
// In theory this doesn't have to be deterministic because the same signatures
// should produce the same output (true/false) regardless of the RNG being used.
// In practice I'm too afraid to do something non-deterministic in concensus code
// In practice I'm too afraid to do something non-deterministic in consensus code
// So I've decided to use a PRNG instead.
// For entropy I'm using the entire ed25519 batch verify input data + the gas consumed
// up until now in this WASM call. This will be deterministic, but also kinda-random in
Expand Down
2 changes: 1 addition & 1 deletion x/registration/module_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ package registration
// keeper Keeper
//}
//
//// returns a cleanup function, which must be defered on
//// returns a cleanup function, which must be deferred on
//func setupTest(t *testing.T) (testData, func()) {
// tempDir, err := os.MkdirTemp("", "wasm")
// require.NoError(t, err)
Expand Down
Loading