Added BulletproofPlus to transaction JSON response

This commit is contained in:
DataHoarder 2023-04-08 20:51:41 +02:00
parent f9cc428f9e
commit 031b77423d
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk

View file

@ -817,12 +817,22 @@ type TransactionJSON struct {
LowerA string `json:"a"`
B string `json:"b"`
T string `json:"t"`
} `json:"bp"`
} `json:"bp,omitempty"`
Bpp []struct {
A string `json:"A"`
A1 string `json:"A1"`
B string `json:"B"`
R1 string `json:"r1"`
S1 string `json:"s1"`
D1 string `json:"d1"`
L []string `json:"L"`
R []string `json:"R"`
} `json:"bpp,omitempty"`
Clsags []struct {
S []string `json:"s"`
C1 string `json:"c1"`
D string `json:"D"`
} `json:"CLSAGs"`
} `json:"CLSAGs,omitempty"`
Pseudoouts []string `json:"pseudoOuts"`
} `json:"rctsig_prunable"`
}