3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 23:32:16 +00:00

Fix deserialization of wallet transactions with a far-out locktime.

This commit is contained in:
Matt Corallo 2013-06-11 22:52:54 +02:00 committed by Mike Hearn
parent 63be9b705b
commit e2e72a275d

View File

@ -457,7 +457,7 @@ public class WalletProtobufSerializer {
}
if (txProto.hasLockTime()) {
tx.setLockTime(txProto.getLockTime());
tx.setLockTime(0xffffffffL & txProto.getLockTime());
}
// Transaction should now be complete.