all files / merkle-trie/ link.js

100% Statements 3/3
100% Branches 0/0
100% Functions 2/2
100% Lines 3/3
1 2 3 4 5 6 7 8 9 10 11 12 13 14           67×       28×      
module.exports = class Link {
  /**
   * a merkle link
   * @param {string} hash the hash of the merkle link
   */
  constructor (hash) {
    this.hash = hash
  }
 
  toBuffer () {
    return this.hash
  }
}