fix(txtop): Made changes to fix the legend grid alignment
Signed-off-by: Akhil Repala <[email protected]>
Signed-off-by: Akhil Repala <[email protected]>
Minor updates
Signed-off-by: Chris Gianelloni <[email protected]>
* fix(ouroboros): Made changes to handle repeated blockfetch NoBlocks requests Signed-off-by: Akhil Repala <[email protected]> * fix(ouroboros): Fixed the bot comments Signed-off-by: Akhil Repala <[email protected]> --------- Signed-off-by: Akhil Repala <[email protected]>
* fix(txtop): Made the changes to fix the panic closed channel error by isolating per connection error channels Signed-off-by: Akhil Repala <[email protected]> * test(txtop): Added a regression test for panic channel closure error Signed-off-by: Akhil Repala <[email protected]> * test(txtop): Fixed the test comment Signed-off-by: Akhil Repala <[email protected]> * fix(txtop): Made changes as per bot fix to avoid error relay goroutine leak on connection failure Signed-off-by: Akhil Repala <[email protected]> * fix(txtop): Made changes to fix the dropping of async connection errors Signed-off-by: Akhil Repala <[email protected]> --------- Signed-off-by: Akhil Repala <[email protected]>
Adds in-process block fetching from ChainDB, bypassing N2C IPC. Response includes raw CBOR bytes and cardano block header (slot, hash, height).
Signed-off-by: yHSJ <[email protected]>
Signed-off-by: Chris Gianelloni <[email protected]>
Adds in-process block fetching from ChainDB, bypassing N2C IPC. Response includes raw CBOR bytes and cardano block header (slot, hash, height).
Signed-off-by: yHSJ <[email protected]>
Signed-off-by: Chris Guiney <[email protected]>
GET /addresses/{address}/utxos returned an empty tx_hash for any UTxO whose
source block aged out of the archive window: tx_hash was built from a
block_data archive lookup, and on a miss (block_data == None, governed by
max_history) unwrap_or_default yields "". Source it from the UTxO's own
TxoRef (always present) instead.