We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
index
1 parent 9d51ec4 commit 2ee9138Copy full SHA for 2ee9138
utilities.js
@@ -257,7 +257,7 @@ function subAccountId() {
257
subid.subid.innerText = "Bad Index";
258
return;
259
}
260
- let indexBytes = util.bnToU8a(parseInt(index), 16);
+ let indexBytes = util.bnToU8a(parseInt(index), 16).reverse();
261
let combinedBytes = new Uint8Array(seedBytes.length + whoBytes.length + indexBytes.length);
262
combinedBytes.set(seedBytes);
263
combinedBytes.set(whoBytes, seedBytes.length);
0 commit comments