File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
packages/stellar_client/lib/src Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ class Client {
6
6
late KeyPair _keyPair;
7
7
late currency.Currencies _currencies;
8
8
late Map <String , String > _serviceUrls;
9
- late Map <String , String > _horizonServerUrls;
10
9
late Network _stellarNetwork;
11
10
12
11
String get accountId => _keyPair.accountId;
@@ -55,10 +54,6 @@ class Client {
55
54
'PUBLIC' : 'https://tokenservices.threefold.io/threefoldfoundation' ,
56
55
'TESTNET' : 'https://testnet.threefold.io/threefoldfoundation'
57
56
};
58
- _horizonServerUrls = {
59
- 'PUBLIC' : 'https://horizon.stellar.org/' ,
60
- 'TESTNET' : 'https://horizon-testnet.stellar.org/'
61
- };
62
57
63
58
switch (_network) {
64
59
case NetworkType .TESTNET :
@@ -737,7 +732,7 @@ class Client {
737
732
ManageBuyOfferOperation updateOfferOperation =
738
733
ManageBuyOfferOperationBuilder (
739
734
targetOffer! .selling,
740
- targetOffer! .buying,
735
+ targetOffer.buying,
741
736
amount,
742
737
price,
743
738
).setOfferId (offerId).build ();
You can’t perform that action at this time.
0 commit comments