Airship\Engine\Continuum\Updaters\UpdateInfo::getMerkleRoot PHP Method

getMerkleRoot() public method

Get the expected Merkle root (verify with Keyggdrasil's cache)
public getMerkleRoot ( boolean $raw = false ) : string
$raw boolean
return string
    public function getMerkleRoot(bool $raw = false) : string
    {
        if ($raw) {
            return \Sodium\hex2bin($this->merkleRoot);
        }
        return $this->merkleRoot;
    }