Skip to content

Commit d396433

Browse files
authored
Merge pull request #1418 from hirosystems/beta-merge
merge master into beta
2 parents 5d9b4e2 + 6128588 commit d396433

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,22 @@
55

66
* add ENV configs for DB close and API shutdown timeouts ([#1366](https://github.com/hirosystems/stacks-blockchain-api/issues/1366)) ([444f008](https://github.com/hirosystems/stacks-blockchain-api/commit/444f008fe2f188148ce14c519373a053a3fc8c89))
77

8-
98
### Bug Fixes
109

1110
* add memos to send-many-memo rosetta STX transfer operations ([#1389](https://github.com/hirosystems/stacks-blockchain-api/issues/1389)) ([0a552b8](https://github.com/hirosystems/stacks-blockchain-api/commit/0a552b8d8c193f64199e63b0956b1c070ce2c530))
1211
* catch cache controller db errors ([#1368](https://github.com/hirosystems/stacks-blockchain-api/issues/1368)) ([f15df41](https://github.com/hirosystems/stacks-blockchain-api/commit/f15df41fa98a171b5e20289240c391a847fd1460))
1312
* remove duplicate tx socket updates inside db transactions ([#1360](https://github.com/hirosystems/stacks-blockchain-api/issues/1360)) ([60c185d](https://github.com/hirosystems/stacks-blockchain-api/commit/60c185d83970fe7cf590075029cd5fd878da96fa))
1413
* sql transaction consistency ([#1410](https://github.com/hirosystems/stacks-blockchain-api/issues/1410)) ([01e26d9](https://github.com/hirosystems/stacks-blockchain-api/commit/01e26d9c89472c8e07ee9d44372d3de86ee0fdb0))
1514

15+
16+
## [6.1.1](https://github.com/hirosystems/stacks-blockchain-api/compare/v6.1.0...v6.1.1) (2022-10-24)
17+
18+
19+
### Bug Fixes
20+
21+
* log PoisonMicroblock tx instead rather than throwing ([#1379](https://github.com/hirosystems/stacks-blockchain-api/issues/1379)) ([cee6352](https://github.com/hirosystems/stacks-blockchain-api/commit/cee63529b4785d9bedc8fcfd568a27aedef0914d))
22+
23+
1624
## [6.1.0](https://github.com/hirosystems/stacks-blockchain-api/compare/v6.0.4...v6.1.0) (2022-10-13)
1725

1826

docs/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1392,7 +1392,7 @@ paths:
13921392
/extended/v1/address/{principal}/{tx_id}/with_transfers:
13931393
get:
13941394
summary: Get account transaction information for specific transaction
1395-
description: Retrieves transaction details for a given Transcation Id `tx_id`, for a given account or contract Identifier.
1395+
description: Retrieves transaction details for a given Transaction Id `tx_id`, for a given account or contract Identifier.
13961396
tags:
13971397
- Accounts
13981398
operationId: get_single_transaction_with_transfers
@@ -2149,7 +2149,7 @@ paths:
21492149
- Rosetta
21502150
summary: Get All Mempool Transactions
21512151
operationId: rosetta_mempool
2152-
description: Retrieves a list of transcations currently in the mempool for a given network.
2152+
description: Retrieves a list of transactions currently in the mempool for a given network.
21532153
responses:
21542154
200:
21552155
description: Success

src/event-stream/reader.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,12 @@ export function parseMessageTransaction(
320320
);
321321
break;
322322
}
323+
case TxPayloadTypeID.PoisonMicroblock: {
324+
logger.verbose(
325+
`Poison microblock: header1 ${payload.microblock_header_1}), header2: ${payload.microblock_header_2}`
326+
);
327+
break;
328+
}
323329
default: {
324330
throw new NotImplementedError(
325331
`extracting data for tx type: ${getEnumDescription(

0 commit comments

Comments
 (0)