1 parent 22e5d88 commit 40036d4Copy full SHA for 40036d4
1 file changed
pycti/entities/opencti_stix_cyber_observable.py
@@ -1413,6 +1413,12 @@ def create(self, **kwargs):
1413
type == "Cryptocurrency-Wallet"
1414
or type == "X-OpenCTI-Cryptocurrency-Wallet"
1415
):
1416
+ # Cryptocurrency-Wallet is an OpenCTI object, description is directly inside the object
1417
+ input_variables["x_opencti_description"] = (
1418
+ observable_data["description"]
1419
+ if "description" in observable_data
1420
+ else None
1421
+ )
1422
input_variables["CryptocurrencyWallet"] = {
1423
"value": observable_data["value"]
1424
if "value" in observable_data
0 commit comments