From a63abd641af6597b3cfaf911891a4c90ae47df86 Mon Sep 17 00:00:00 2001 From: Gregory Bednov Date: Sun, 10 Aug 2025 12:40:53 +0300 Subject: [PATCH] Update types.go --- blockchain/types/types.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/blockchain/types/types.go b/blockchain/types/types.go index 6c280ca..96243d4 100644 --- a/blockchain/types/types.go +++ b/blockchain/types/types.go @@ -34,3 +34,8 @@ type CompoundTx struct { } `json:"body"` Signature string `json:"signature"` } + +type SignedTx struct { + Body any `json:"body"` + Signature string `json:"signature"` +}