mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 06:55:08 +01:00
Add missing scriptType enum
This commit is contained in:
parent
0414b1baec
commit
774b2b3c51
1 changed files with 2 additions and 1 deletions
|
@ -35,7 +35,7 @@ import lombok.ToString;
|
|||
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||
public enum ScriptType {
|
||||
|
||||
// https://github.com/bitcoin/bitcoin/blob/8152d3fe57a991e9088d0b9d261d2b10936f45a9/src/script/standard.cpp
|
||||
// https://github.com/bitcoin/bitcoin/blob/master/src/script/standard.cpp
|
||||
PUB_KEY("pubkey"),
|
||||
PUB_KEY_HASH("pubkeyhash"),
|
||||
SCRIPT_HASH("scripthash"),
|
||||
|
@ -43,6 +43,7 @@ public enum ScriptType {
|
|||
NULL_DATA("nulldata"),
|
||||
WITNESS_V0_KEYHASH("witness_v0_keyhash"),
|
||||
WITNESS_V0_SCRIPTHASH("witness_v0_scripthash"),
|
||||
WITNESS_UNKNOWN("witness_unknown"),
|
||||
NONSTANDARD("nonstandard");
|
||||
|
||||
private final String name;
|
||||
|
|
Loading…
Add table
Reference in a new issue