Skip to content

Commit 5ace58c

Browse files
author
Janaka-Steph
authored
Set satsPerByte to 0.2 (tdex-network#583)
1 parent 77d25f9 commit 5ace58c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/pages/Withdrawal/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ const Withdrawal: React.FC<WithdrawalProps> = ({
188188
getRecipient(),
189189
customCoinSelector(dispatch),
190190
() => changeAddress.confidentialAddress,
191-
true
191+
true,
192+
0.2
192193
);
193194
// blind all the outputs except fee
194195
const recipientData = address.fromConfidential(recipientAddress);

test/main.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ test.describe('onboarded', () => {
124124
await expect(transactionDetailsPage.getByTestId('header-title')).toHaveText(/SEND DETAILS/);
125125
});
126126

127-
test.skip('withdraw all USDt', async ({ page }) => {
127+
test('withdraw all USDt', async ({ page }) => {
128128
faucet(fixtures.firstAddress, 100, markets[0].market.quoteAsset);
129129
await page.getByTestId('item-asset-USDt').click();
130130
await page.getByTestId('button-send').click();
@@ -136,7 +136,7 @@ test.describe('onboarded', () => {
136136
await expect(transactionDetailsPage.getByTestId('header-title')).toHaveText(/SEND DETAILS/);
137137
});
138138

139-
test.skip('withdraw 10 USDt', async ({ page }) => {
139+
test('withdraw 10 USDt', async ({ page }) => {
140140
faucet(fixtures.firstAddress, 100, markets[0].market.quoteAsset);
141141
await page.getByTestId('item-asset-USDt').click();
142142
await page.getByTestId('button-send').click();

0 commit comments

Comments
 (0)