mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 14:50:57 +01:00
Fixed V2 server deserialisation from StoredServerChannel
This commit is contained in:
parent
f1b4db1540
commit
23c9f0d0e2
1 changed files with 1 additions and 0 deletions
|
@ -122,6 +122,7 @@ public abstract class PaymentChannelServerState {
|
|||
this.serverKey = checkNotNull(storedServerChannel.myKey);
|
||||
this.storedServerChannel = storedServerChannel;
|
||||
this.bestValueToMe = checkNotNull(storedServerChannel.bestValueToMe);
|
||||
this.minExpireTime = storedServerChannel.refundTransactionUnlockTimeSecs;
|
||||
this.bestValueSignature = storedServerChannel.bestValueSignature;
|
||||
checkArgument(bestValueToMe.equals(Coin.ZERO) || bestValueSignature != null);
|
||||
storedServerChannel.state = this;
|
||||
|
|
Loading…
Add table
Reference in a new issue