@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
10 lines • 550 B
JavaScript
import { GossipActionError } from "./gossipValidation.js";
export var VoluntaryExitErrorCode;
(function (VoluntaryExitErrorCode) {
VoluntaryExitErrorCode["ALREADY_EXISTS"] = "VOLUNTARY_EXIT_ERROR_ALREADY_EXISTS";
VoluntaryExitErrorCode["INVALID"] = "VOLUNTARY_EXIT_ERROR_INVALID";
VoluntaryExitErrorCode["INVALID_SIGNATURE"] = "VOLUNTARY_EXIT_ERROR_INVALID_SIGNATURE";
})(VoluntaryExitErrorCode || (VoluntaryExitErrorCode = {}));
export class VoluntaryExitError extends GossipActionError {
}
//# sourceMappingURL=voluntaryExitError.js.map