Skip to content

Commit

Permalink
Merge pull request #19 from drips-network/fix-missing-paused-streams
Browse files Browse the repository at this point in the history
fix paused stream(s) sometimes not appearing
  • Loading branch information
efstajas authored Jun 19, 2024
2 parents 74acbe9 + ee868d1 commit 08ab478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/streamUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export function makeStreamId(
throw new Error('Invalid values');
}

return `${senderAccountId}-${tokenAddress}-${dripId}`;
return `${senderAccountId}-${tokenAddress.toLowerCase()}-${dripId}`;
}

export const fromUint256 = (streamConfig: bigint | string) => {
Expand Down

0 comments on commit 08ab478

Please sign in to comment.