genlayer 0.32.3 → 0.32.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/tests/actions/staking.test.ts +1 -0
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -18258,7 +18258,7 @@ var require_semver2 = __commonJS({
|
|
|
18258
18258
|
import { program } from "commander";
|
|
18259
18259
|
|
|
18260
18260
|
// package.json
|
|
18261
|
-
var version = "0.32.
|
|
18261
|
+
var version = "0.32.4";
|
|
18262
18262
|
var package_default = {
|
|
18263
18263
|
name: "genlayer",
|
|
18264
18264
|
version,
|
package/package.json
CHANGED
|
@@ -152,6 +152,7 @@ describe("DelegatorExitAction", () => {
|
|
|
152
152
|
action = new DelegatorExitAction();
|
|
153
153
|
setupActionMocks(action);
|
|
154
154
|
mockClient.delegatorExit.mockResolvedValue(mockTxResult);
|
|
155
|
+
mockClient.getEpochInfo.mockResolvedValue(mockEpochInfo);
|
|
155
156
|
});
|
|
156
157
|
|
|
157
158
|
test("exits successfully", async () => {
|