Resets all data on the specified Chain Core, including access tokens and MockHSM keys. @param client client object that makes requests to the core
(Client client)
| 182 | * @param client client object that makes requests to the core |
| 183 | */ |
| 184 | public static void resetEverything(Client client) throws ChainException { |
| 185 | Map<String, Object> params = new HashMap<>(); |
| 186 | params.put("everything", true); |
| 187 | client.request("reset", params, SuccessMessage.class); |
| 188 | } |
| 189 | |
| 190 | public static class Builder { |
| 191 | /** |