@protokol/notarization-transactions
Version:
Transaction Types For Notarization Support
12 lines • 513 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StaticFeeMismatchError = void 0;
const core_transactions_1 = require("@arkecosystem/core-transactions");
// Fee errors
class StaticFeeMismatchError extends core_transactions_1.Errors.TransactionError {
constructor(staticFee) {
super(`Failed to apply transaction, because fee doesn't match static fee ${staticFee}.`);
}
}
exports.StaticFeeMismatchError = StaticFeeMismatchError;
//# sourceMappingURL=errors.js.map