lib/immudb/schemas/tx_list.ex
defmodule Immudb.Schemas.TxList do
@type t :: %__MODULE__{
txs: [Immudb.Schemas.Tx.t()]
}
defstruct txs: []
end
defmodule Immudb.Schemas.TxList do
@type t :: %__MODULE__{
txs: [Immudb.Schemas.Tx.t()]
}
defstruct txs: []
end