You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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();
```
0 commit comments