All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jd.blockchain.ledger.MerkleNode Maven / Gradle / Ivy

There is a newer version: 1.6.5.RELEASE
Show newest version
package com.jd.blockchain.ledger;

import com.jd.blockchain.crypto.HashDigest;

public interface MerkleNode {

	HashDigest getNodeHash();

	/**
	 * 节点的深度;
	 *
	 * 叶子节点的深度为 0;每一级父节点的深度加 1 ;
	 *
	 * @return
	 */
	int getLevel();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy