Skip to content

Commit

Permalink
Fix: is_stream to be compatible with any new stream providers (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
philogicae authored Aug 23, 2024
1 parent 7e73734 commit 86374f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aleph_message/models/execution/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Payment(HashableModel):

@property
def is_stream(self):
return self.type == PaymentType.superfluid
return self.type != PaymentType.hold


class Interface(str, Enum):
Expand Down

0 comments on commit 86374f8

Please sign in to comment.