Skip to content

Commit 7669e32

Browse files
author
Mateusz Czeladka
committed
feat: enable CBOR transaction body in yaci-store configuration
Added store.cardano.return-tx-body-cbor=true to yaci-indexer configuration to enable returning transaction body CBOR from yaci-store beta5. This property is required for proper transaction processing and is enabled in: - Main application.properties - Test integration properties
1 parent 121b0ee commit 7669e32

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

yaci-indexer/src/main/resources/application.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ store.cardano.port=${CARDANO_NODE_PORT:30000}
1717
store.cardano.protocol-magic=${PROTOCOL_MAGIC:1}
1818
# 3 seconds for keep alive
1919
store.cardano.keep-alive-interval=3000
20+
store.cardano.return-tx-body-cbor=true
2021

2122
############### Genesis files #############################
2223
# The application reads the below genesis files to get data like slotLength, maxLovelaceSupply

yaci-indexer/src/test/resources/application-test-integration.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ spring.h2.console.enabled=true
1212

1313
store.cardano.host=${CARDANO_NODE_HOST:localhost}
1414
store.cardano.port=${CARDANO_NODE_PORT:8090}
15+
store.cardano.return-tx-body-cbor=true
1516

1617
store.utxo.pruning-interval=3600
1718
store.utxo.pruning-safe-blocks=${REMOVE_SPENT_UTXOS_LAST_BLOCKS_GRACE_COUNT:129600}

0 commit comments

Comments
 (0)