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"` +}