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