Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jambtc committed May 8, 2023
1 parent 67c5363 commit a20e669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $root = $merkle->root($data);


echo "Merkle root: $root\n";
echo "Verifica Merkle root: " . ($merkle->verify($data, $root) ? 'SUCCESSO' : 'FALLITO'] . "\n";
echo "Verifica Merkle root: " . ($merkle->verify($data, $root) ? 'SUCCESSO' : 'FALLITO') . "\n";
```

Nell'esempio, il metodo `root` viene utilizzata per calcolare il Merkle Root a partire dalla lista di dati 'abc', 'cde', 'efg', 'jki', 'lmn', e viene stampato il risultato.
Expand Down

0 comments on commit a20e669

Please sign in to comment.