Skip to content

Commit

Permalink
Fix importInstantLock
Browse files Browse the repository at this point in the history
  • Loading branch information
markin-io committed Mar 8, 2022
1 parent 9f528c5 commit cc6773b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function importState(state) {
this.importTransaction(new Transaction(Buffer.from(serializedTransaction, 'hex')), metadata);
});
Object.values(instantLocks).forEach((serializedInstantLock) => {
this.importTransaction(new InstantLock(Buffer.from(serializedInstantLock, 'hex')));
this.importInstantLock(new InstantLock(Buffer.from(serializedInstantLock, 'hex')));
});
}
module.exports = importState;

0 comments on commit cc6773b

Please sign in to comment.