Skip to content

Commit

Permalink
fix: updating loading message
Browse files Browse the repository at this point in the history
  • Loading branch information
rozanagy committed Nov 18, 2024
1 parent ad95f39 commit 332d7ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/hooks/use-leather.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export function useLeather(): UseLeatherReturnType {
feeRateMultiplier: number
): Promise<Transaction> {
try {
setIsLoading([true, 'Creating Funding Transaction']);
setIsLoading([true, 'Creating Deposit Transaction']);

// ==> Create Funding Transaction
const fundingPSBT = await dlcHandler?.createFundingPSBT(
Expand Down
2 changes: 1 addition & 1 deletion src/app/hooks/use-unisat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export function useUnisat(): UseUnisatReturnType {
feeRateMultiplier: number
): Promise<Transaction> {
try {
setIsLoading([true, 'Creating Funding Transaction']);
setIsLoading([true, 'Creating Deposit Transaction']);

// ==> Create Funding Transaction
const fundingPSBT = await dlcHandler?.createFundingPSBT(
Expand Down

0 comments on commit 332d7ea

Please sign in to comment.