Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
fix jumpIn function external parameter
Browse files Browse the repository at this point in the history
for #40
  • Loading branch information
mikeseese committed Jun 15, 2018
1 parent 7d16af9 commit e58429d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export class LibSdbRuntime extends EventEmitter {
const sourceLocation = LibSdbUtils.SourceMappingDecoder.atIndex(index, bytecode.srcMap);

if (data.content.specialEvents.indexOf("fnJumpDestination") >= 0) {
this.processJumpIn(sourceLocation, contract, data.content.stack, true);
this.processJumpIn(sourceLocation, contract, data.content.stack);
}
else if (data.content.specialEvents.indexOf("jump") >= 0) {
let processedJump: boolean = false;
Expand Down

0 comments on commit e58429d

Please sign in to comment.