Example #1
0
 @Override
 public byte[] getStaticData(UserPublicKey owner) {
   byte[] dummy = null;
   StaticData staticData = new StaticData(owner.getPublicKeys(), dummy);
   RowData[] users = staticData.select();
   if (users == null || users.length != 1) return null;
   return users[0].data;
 }