Package org.ldk.structs
Class InvalidShutdownScript
- java.lang.Object
-
- org.ldk.structs.InvalidShutdownScript
-
public class InvalidShutdownScript extends Object
An error occurring when converting from [`Script`] to [`ShutdownScript`].
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finalize()
byte[]
get_script()
The script that did not meet the requirements from [BOLT #2].static InvalidShutdownScript
of(byte[] script_arg)
Constructs a new InvalidShutdownScript given each fieldvoid
set_script(byte[] val)
The script that did not meet the requirements from [BOLT #2].
-
-
-
Method Detail
-
finalize
protected void finalize() throws Throwable
-
get_script
public byte[] get_script()
The script that did not meet the requirements from [BOLT #2]. [BOLT #2]: https://github.com/lightningnetwork/lightning-rfc/blob/master/02-peer-protocol.md
-
set_script
public void set_script(byte[] val)
The script that did not meet the requirements from [BOLT #2]. [BOLT #2]: https://github.com/lightningnetwork/lightning-rfc/blob/master/02-peer-protocol.md
-
of
public static InvalidShutdownScript of(byte[] script_arg)
Constructs a new InvalidShutdownScript given each field
-
-