Skip to content

Commit

Permalink
fix: position api unclaimed fee calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
r3v4s committed Apr 15, 2024
1 parent fbb3500 commit 09f42ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion position/_RPC_api.gno
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func rpcMakePosition(lpTokenId uint64) RpcPosition {
unclaimedFee0 := u256.Zero()
unclaimedFee1 := u256.Zero()
if !burned {
unclaimedFee0, unclaimedFee1 := unclaimedFee(lpTokenId)
unclaimedFee0, unclaimedFee1 = unclaimedFee(lpTokenId)
}

return RpcPosition{
Expand Down

0 comments on commit 09f42ce

Please sign in to comment.