Skip to content

Commit

Permalink
refactor: apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: antazoey <[email protected]>
  • Loading branch information
fubuloubu and antazoey authored Oct 3, 2024
1 parent 8084493 commit 3d69bb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/StreamManager.vy
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Anyone (not just the stream `owner`) can add more paid time to a Stream. Streams can be cancel-
led by the `owner` at any point after `MIN_STREAM_LIFE` has elapsed, which is a parameter de-
signed to enforce the amount it takes to provision the product or service being fascilitated by
signed to enforce the amount it takes to provision the product or service being facilitated by
this contract.
The purpose of these Streams is usually as an optimistic payment method for an off-chain good
Expand Down Expand Up @@ -103,7 +103,7 @@ event StreamFunded:
event StreamClaimed:
stream_id: indexed(uint256)
claimer: indexed(address)
is_expires: indexed(bool)
is_expired: indexed(bool)
claim_amount: uint256


Expand Down

0 comments on commit 3d69bb9

Please sign in to comment.