File tree Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Expand file tree Collapse file tree 4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 41
41
if : startsWith(matrix.os, 'macos-')
42
42
run : |
43
43
brew update
44
- brew tap cuber/homebrew-libsecp256k1
45
- brew install libsecp256k1
44
+ brew install secp256k1
46
45
47
46
- name : Install required system packages only for Ubuntu Linux
48
47
if : startsWith(matrix.os, 'ubuntu-')
Original file line number Diff line number Diff line change @@ -21,8 +21,7 @@ Using some chains may also require installing `libgmp3-dev`.
21
21
### macOs
22
22
This project does not support Python 3.12 on macOS. Please use Python 3.11 instead.
23
23
``` shell
24
- $ brew tap cuber/homebrew-libsecp256k1
25
- $ brew install libsecp256k1
24
+ $ brew install secp256k1
26
25
```
27
26
28
27
## Installation
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ dynamic = [ "version" ]
30
30
dependencies = [
31
31
" aiohttp>=3.8.3" ,
32
32
" aioresponses>=0.7.6" ,
33
- " aleph-message>=1.0.3 " ,
33
+ " aleph-message>=1.0.4 " ,
34
34
" aleph-superfluid>=0.3" ,
35
35
" base58==2.1.1" , # Needed now as default with _load_account changement
36
36
" coincurve; python_version>='3.9'" ,
Original file line number Diff line number Diff line change @@ -566,7 +566,7 @@ async def get_stored_content(
566
566
message , status = await self .get_message (
567
567
item_hash = ItemHash (item_hash ), with_status = True
568
568
)
569
- if status != MessageStatus .PROCESSED :
569
+ if status not in [ MessageStatus .PROCESSED , MessageStatus . REMOVING ] :
570
570
resp = f"Invalid message status: { status } "
571
571
elif message .type != MessageType .store :
572
572
resp = f"Invalid message type: { message .type } "
You can’t perform that action at this time.
0 commit comments