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:
parent
63be9b705b
commit
e2e72a275d
@ -457,7 +457,7 @@ public class WalletProtobufSerializer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (txProto.hasLockTime()) {
|
if (txProto.hasLockTime()) {
|
||||||
tx.setLockTime(txProto.getLockTime());
|
tx.setLockTime(0xffffffffL & txProto.getLockTime());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Transaction should now be complete.
|
// Transaction should now be complete.
|
||||||
|
Loading…
Reference in New Issue
Block a user