From 121c4c9a3c62a4c0bd216989a7ab20d314af9f4c Mon Sep 17 00:00:00 2001 From: "Michael F." Date: Wed, 7 Feb 2024 16:48:58 +0100 Subject: [PATCH] fixed: in type to small for first_tx_id and last_tx_id --- CHANGELOG.md | 4 ++++ Makefile | 4 ++-- .../schema/resources/transformed_account_schema.sql | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dba05e..6ae06e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [24.01.1/2.1.1] 2024-02-07 +### fixed +- address.first_tx_id and last_tx_id should be long type + ## [24.01/2.1.0] 2024-01-09 ### added - ingest now works stores additional details/tables in raw keyspace (tx_type, fees) diff --git a/Makefile b/Makefile index 8df799d..dc17b10 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ SHELL := /bin/bash PROJECT := graphsense-lib VENV := venv -RELEASE := 'v24.01.0' -RELEASESEM := 'v2.1.0' +RELEASE := 'v24.01.1' +RELEASESEM := 'v2.1.1' all: format lint test build diff --git a/src/graphsenselib/schema/resources/transformed_account_schema.sql b/src/graphsenselib/schema/resources/transformed_account_schema.sql index 7555ba2..8e1be8f 100644 --- a/src/graphsenselib/schema/resources/transformed_account_schema.sql +++ b/src/graphsenselib/schema/resources/transformed_account_schema.sql @@ -79,8 +79,8 @@ CREATE TABLE address ( no_outgoing_txs int, no_incoming_txs_zero_value int, no_outgoing_txs_zero_value int, - first_tx_id int, - last_tx_id int, + first_tx_id bigint, + last_tx_id bigint, total_received FROZEN , total_spent FROZEN , total_tokens_received map>,