We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f33a44 commit 66b6d64Copy full SHA for 66b6d64
packages/stellar_client/lib/src/client.dart
@@ -715,7 +715,7 @@ class Client {
715
}
716
717
718
- /// Updating a DEX order by submitting a `ManageBuyOfferOperation` transaction.
+ /// Updating a DEX order by submitting a `ManageSellOfferOperation` transaction.
719
///
720
/// This function allows user to update previously created order by its offerId.
721
@@ -739,8 +739,8 @@ class Client {
739
'Offer with ID $offerId not found in user\'s account.'),
740
);
741
742
- ManageBuyOfferOperation updateOfferOperation =
743
- ManageBuyOfferOperationBuilder(
+ ManageSellOfferOperation updateOfferOperation =
+ ManageSellOfferOperationBuilder(
744
targetOffer!.selling,
745
targetOffer.buying,
746
amount,
0 commit comments