Skip to content
Snippets Groups Projects
Commit 8f84aced authored by James Calfee's avatar James Calfee
Browse files

Added missing mark and reset to memo decrypt buffer. #202

parent 00a9ceaf
No related branches found
No related tags found
No related merge requests found
......@@ -32,12 +32,14 @@ export function decode(private_key, memo) {
// remove varint length prefix
const mbuf = ByteBuffer.fromBinary(memo.toString('binary'), ByteBuffer.DEFAULT_CAPACITY, ByteBuffer.LITTLE_ENDIAN)
try {
mbuf.mark()
// I get better luck using readVString .. but (see cache)
return mbuf.readVString()
} catch(e) {
// Piston's encrypted memos fail the above varibale length utf-8 conversion.
// The origainal code works for Piston.
// https://github.com/steemit/steemit.com/issues/202
mbuf.reset()
const len = mbuf.readVarint32() // remove the varint length prefix
const remaining = mbuf.remaining()
if(len !== remaining) // warn
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment