Skip to content

Commit

Permalink
fix: remove deposit from claim method
Browse files Browse the repository at this point in the history
The deposit from the claim method was added originally to signify that the user was receiving their deposit in a UI. However, this doesn't capture the intent of the method, so this removes it as there is not technically a deposit required in additional to the original deposit to claim rewards.
  • Loading branch information
cjkoepke committed Mar 25, 2024
1 parent 4e35357 commit 85b68fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/typescript/taste-test/classes/TasteTestLucid.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ to a transaction.

#### Defined in

[taste-test/src/lib/classes/TasteTest.Lucid.class.ts:703](https://github.com/SundaeSwap-finance/sundae-sdk/blob/main/packages/taste-test/src/lib/classes/TasteTest.Lucid.class.ts#L703)
[taste-test/src/lib/classes/TasteTest.Lucid.class.ts:702](https://github.com/SundaeSwap-finance/sundae-sdk/blob/main/packages/taste-test/src/lib/classes/TasteTest.Lucid.class.ts#L702)

___

Expand All @@ -79,7 +79,7 @@ A utility method to default the Taste Test type to liquidity if not set.

#### Defined in

[taste-test/src/lib/classes/TasteTest.Lucid.class.ts:689](https://github.com/SundaeSwap-finance/sundae-sdk/blob/main/packages/taste-test/src/lib/classes/TasteTest.Lucid.class.ts#L689)
[taste-test/src/lib/classes/TasteTest.Lucid.class.ts:688](https://github.com/SundaeSwap-finance/sundae-sdk/blob/main/packages/taste-test/src/lib/classes/TasteTest.Lucid.class.ts#L688)

___

Expand Down Expand Up @@ -158,7 +158,7 @@ Throws an error if the transaction cannot be completed or if there are issues wi

#### Defined in

[taste-test/src/lib/classes/TasteTest.Lucid.class.ts:589](https://github.com/SundaeSwap-finance/sundae-sdk/blob/main/packages/taste-test/src/lib/classes/TasteTest.Lucid.class.ts#L589)
[taste-test/src/lib/classes/TasteTest.Lucid.class.ts:588](https://github.com/SundaeSwap-finance/sundae-sdk/blob/main/packages/taste-test/src/lib/classes/TasteTest.Lucid.class.ts#L588)

___

Expand Down Expand Up @@ -232,7 +232,7 @@ If neither stake nor payment credentials could be determined from the address.

#### Defined in

[taste-test/src/lib/classes/TasteTest.Lucid.class.ts:669](https://github.com/SundaeSwap-finance/sundae-sdk/blob/main/packages/taste-test/src/lib/classes/TasteTest.Lucid.class.ts#L669)
[taste-test/src/lib/classes/TasteTest.Lucid.class.ts:668](https://github.com/SundaeSwap-finance/sundae-sdk/blob/main/packages/taste-test/src/lib/classes/TasteTest.Lucid.class.ts#L668)

___

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,6 @@ export class TasteTestLucid implements AbstractTasteTest {
]);

return this.completeTx({
hasFees: true,
tx,
referralFee: args.referralFee,
});
Expand Down

0 comments on commit 85b68fd

Please sign in to comment.