We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f3f616 commit cbe5ec3Copy full SHA for cbe5ec3
utils.js
@@ -11,7 +11,7 @@ function calculateSHA256FromHex(hexData) {
11
function kzgCommitmentToVersionedHash(kzgCommitment) {
12
const kzgCommitmentHash = calculateSHA256FromHex(kzgCommitment);
13
14
- return str = '0x01' + kzgCommitmentHash.substring(2);
+ return '0x01' + kzgCommitmentHash.substring(2);
15
}
16
17
function toQuantity(value) {
0 commit comments