From 3d69bb988e6a936f7df4ee48d6a027ddfd84724e Mon Sep 17 00:00:00 2001 From: El De-dog-lo <3859395+fubuloubu@users.noreply.github.com> Date: Thu, 3 Oct 2024 14:23:48 -0400 Subject: [PATCH] refactor: apply suggestions from code review Co-authored-by: antazoey --- contracts/StreamManager.vy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/StreamManager.vy b/contracts/StreamManager.vy index 3a5a2c9..5417a11 100644 --- a/contracts/StreamManager.vy +++ b/contracts/StreamManager.vy @@ -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 @@ -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