Browse Source

HDNode: consistent capitalization in comments

hk-custom-address
Daniel Cousens 10 years ago
parent
commit
b12f559b85
  1. 2
      src/hdnode.js

2
src/hdnode.js

@ -168,7 +168,7 @@ HDNode.prototype.toBase58 = function (__isPrivate) {
buffer.writeUInt32BE(this.parentFingerprint, 5) buffer.writeUInt32BE(this.parentFingerprint, 5)
// 4 bytes: child number. This is the number i in xi = xpar/i, with xi the key being serialized. // 4 bytes: child number. This is the number i in xi = xpar/i, with xi the key being serialized.
// This is encoded in Big endian. (0x00000000 if master key) // This is encoded in big endian. (0x00000000 if master key)
buffer.writeUInt32BE(this.index, 9) buffer.writeUInt32BE(this.index, 9)
// 32 bytes: the chain code // 32 bytes: the chain code

Loading…
Cancel
Save