ran `flow` in keyserver
also, after the subsequent diff, I added the following code to `keyserver.js` and re-ran `flow`:
```
+ const user = { userID: '12345', deviceID: 'ahhhhh' };
+ const publicKey = identityClient.getUserPublicKey(user, (e, o) => {
+ if (e) {
+ console.log(e);
+ } else {
+ console.log(o);
+ }
+ });
+ console.log(publicKey);
```
also ran yarn dev and got back the expected public key