Skip to content

Commit fc089ba

Browse files
authored
Merge branch 'main' into 1yam-voucher-service
2 parents aede0a0 + 5e3b927 commit fc089ba

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/build-wheels.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ jobs:
4141
if: startsWith(matrix.os, 'macos-')
4242
run: |
4343
brew update
44-
brew tap cuber/homebrew-libsecp256k1
45-
brew install libsecp256k1
44+
brew install secp256k1
4645
4746
- name: Install required system packages only for Ubuntu Linux
4847
if: startsWith(matrix.os, 'ubuntu-')

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ Using some chains may also require installing `libgmp3-dev`.
2121
### macOs
2222
This project does not support Python 3.12 on macOS. Please use Python 3.11 instead.
2323
```shell
24-
$ brew tap cuber/homebrew-libsecp256k1
25-
$ brew install libsecp256k1
24+
$ brew install secp256k1
2625
```
2726

2827
## Installation

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dynamic = [ "version" ]
3030
dependencies = [
3131
"aiohttp>=3.8.3",
3232
"aioresponses>=0.7.6",
33-
"aleph-message>=1.0.3",
33+
"aleph-message>=1.0.4",
3434
"aleph-superfluid>=0.3",
3535
"base58==2.1.1", # Needed now as default with _load_account changement
3636
"coincurve; python_version>='3.9'",

src/aleph/sdk/client/http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ async def get_stored_content(
566566
message, status = await self.get_message(
567567
item_hash=ItemHash(item_hash), with_status=True
568568
)
569-
if status != MessageStatus.PROCESSED:
569+
if status not in [MessageStatus.PROCESSED, MessageStatus.REMOVING]:
570570
resp = f"Invalid message status: {status}"
571571
elif message.type != MessageType.store:
572572
resp = f"Invalid message type: {message.type}"

0 commit comments

Comments
 (0)