|
@@ -147,6 +147,7 @@ impl Mint {
|
|
// a quote while waiting for the mint response.
|
|
// a quote while waiting for the mint response.
|
|
let state = match quote.state {
|
|
let state = match quote.state {
|
|
MintQuoteState::Pending => MintQuoteState::Paid,
|
|
MintQuoteState::Pending => MintQuoteState::Paid,
|
|
|
|
+ MintQuoteState::Unpaid => self.check_mint_quote_paid(quote_id).await?,
|
|
s => s,
|
|
s => s,
|
|
};
|
|
};
|
|
|
|
|
|
@@ -274,6 +275,12 @@ impl Mint {
|
|
.update_mint_quote_state(&mint_request.quote, MintQuoteState::Pending)
|
|
.update_mint_quote_state(&mint_request.quote, MintQuoteState::Pending)
|
|
.await?;
|
|
.await?;
|
|
|
|
|
|
|
|
+ let state = if state == MintQuoteState::Unpaid {
|
|
|
|
+ self.check_mint_quote_paid(&mint_quote.id).await?
|
|
|
|
+ } else {
|
|
|
|
+ state
|
|
|
|
+ };
|
|
|
|
+
|
|
match state {
|
|
match state {
|
|
MintQuoteState::Unpaid => {
|
|
MintQuoteState::Unpaid => {
|
|
let _state = self
|
|
let _state = self
|