Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WASM: rename
randomized_public_key
to randomized_public_key_pair
This method returns a struct which also has a `randomized_public_key` method, which results in code like this: ```rs let r = x.randomized_public_key(); let p = r.randomized_public_key(); ``` ... which is very ambiguous/confusing. With this PR, the above code becomes: ```rs let r = x.randomized_public_key_pair(); let p = r.randomized_public_key(); ```
- Loading branch information