@ethereumjs/mpt
Version:
Implementation of the modified merkle patricia tree as specified in Ethereum's yellow paper.
14 lines • 487 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExtensionMPTNode = void 0;
const extensionOrLeafNodeBase_ts_1 = require("./extensionOrLeafNodeBase.js");
class ExtensionMPTNode extends extensionOrLeafNodeBase_ts_1.ExtensionOrLeafMPTNodeBase {
constructor(nibbles, value) {
super(nibbles, value, false);
}
raw() {
return super.raw();
}
}
exports.ExtensionMPTNode = ExtensionMPTNode;
//# sourceMappingURL=extension.js.map