From 057c554ee2370db21c8d1a558bf4c89d1582874e Mon Sep 17 00:00:00 2001 From: supertypo Date: Mon, 1 Jul 2024 11:23:26 +0200 Subject: [PATCH] added isCoinbase field for UTXOs --- endpoints/get_utxos.py | 1 + 1 file changed, 1 insertion(+) diff --git a/endpoints/get_utxos.py b/endpoints/get_utxos.py index 56016aa..c2f044d 100644 --- a/endpoints/get_utxos.py +++ b/endpoints/get_utxos.py @@ -21,6 +21,7 @@ class UtxoModel(BaseModel): amount: str = "11501593788", scriptPublicKey: ScriptPublicKeyModel blockDaaScore: str = "18867232" + isCoinbase: bool = False class UtxoResponse(BaseModel):