Skip to content

Commit 81ba075

Browse files
committedJan 31, 2025·
Merge branch 'master' of github.com:compolabs/spark-matcher-simple
2 parents da72518 + 66f6156 commit 81ba075

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/order_processor.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ impl OrderProcessor {
6060
o.id, o.status, o.order_type, o.amount
6161
);
6262
}
63-
6463
let result = self.match_orders(orders.clone()).await;
6564

6665
let updates = match result {
@@ -133,6 +132,7 @@ impl OrderProcessor {
133132
&path,
134133
)
135134
.expect("Failed to create wallet");
135+
let wallet_address = wallet.address().clone();
136136

137137
let market =
138138
SparkMarketContract::new(ContractId::from_str(&self.settings.contract_id)?, wallet)
@@ -144,6 +144,7 @@ impl OrderProcessor {
144144
.collect();
145145

146146
info!("Processing orders with HD wallet {}", hd_wallet_number);
147+
info!("Wallet address {}", &wallet_address);
147148

148149
match market.match_order_many(unique_bits256_ids.clone()).await {
149150
Ok(result) => {

0 commit comments

Comments
 (0)
Please sign in to comment.