We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aba71d3 commit 2c6b136Copy full SHA for 2c6b136
1 file changed
test/leafTest.js
@@ -17,8 +17,9 @@ describe("Leaf", () => {
17
// and the operator's id in the final 32 bits. Each hex character
18
// represents 4 bits, so a 40-character hex representation of an eth
19
// address is the exact 160 bits we need. A number (like a creation block
20
- // or id) is little-endian and gets left-padded with zeros to fill the
21
- // exact bit count.
+ // or id) is big-endian and gets left-padded (see
+ // https://github.com/ethereum/solidity-examples/issues/54) with zeros
22
+ // to fill the exact bit count.
23
const testData = [
24
{
25
address: "0x4ddc2d193948926d02f9b1fe9e1daa0718270ed5",
0 commit comments