Skip to content

Commit

Permalink
fix: Null Check in DFK Decoders (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
karanpargal authored Apr 18, 2024
1 parent f2404dc commit c830bfa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ GoldRushDecoder.on(
},
{
heading: "Winner",
value: isNullAddress(decoded.winner)
value: !isNullAddress(decoded.winner)
? decoded.winner
: "No winner",
type: "address",
Expand Down

0 comments on commit c830bfa

Please sign in to comment.