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 e8e6a28 commit 48ceddcCopy full SHA for 48ceddc
modules/rest_blockfrost/src/handlers/transactions.rs
@@ -88,7 +88,7 @@ impl Serialize for TxOutputAmount {
88
}
89
90
91
-/// Handle `/txs/{hash}`
+/// Handle `/txs/{hash}[/param][/param2]`
92
pub async fn handle_transactions_blockfrost(
93
context: Arc<Context<Message>>,
94
params: Vec<String>,
@@ -183,6 +183,7 @@ async fn handle_transaction_query(
183
};
184
// TODO: calc from outputs and inputs if recorded_fee is None
185
let fee = txs_info.recorded_fee.unwrap_or_default();
186
+ // TODO: Check whether updates require a deposit or not
187
let deposit = match calculate_deposit(
188
txs_info.pool_update_count,
189
txs_info.stake_cert_count,
0 commit comments