Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
condenser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
condenser
Commits
8f84aced
Commit
8f84aced
authored
8 years ago
by
James Calfee
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
shared/chain/memo.js
+2
-0
2 additions, 0 deletions
shared/chain/memo.js
with
2 additions
and
0 deletions
shared/chain/memo.js
+
2
−
0
View file @
8f84aced
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment