Skip to content

Commit

Permalink
Fix auction fees
Browse files Browse the repository at this point in the history
  • Loading branch information
KillianH committed Mar 3, 2023
1 parent 8847c50 commit 13ff359
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"testnet": "vite preview --mode testnet"
},
"dependencies": {
"@casperholders/core": "^3.11.1",
"@casperholders/core": "3.11.2",
"@ledgerhq/hw-transport-web-ble": "^6.27.8",
"@ledgerhq/hw-transport-webusb": "^6.27.8",
"@toruslabs/casper-embed": "^2.0.1",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/views/staking/UndelegateView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default {
data() {
return {
minimumCSPRUnstake: 1,
undelegateFee: 0.00001,
undelegateFee: 2.5,
amount: '1',
errorBalance: null,
balance: '0',
Expand Down
2 changes: 1 addition & 1 deletion src/views/validators/WithdrawBidView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default {
data() {
return {
minBid: 1,
bidFee: 0.00001,
bidFee: 2.5,
amount: '1',
balance: '0',
validatorBalance: '0',
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/specs/offlinePaths/Undelegate.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('Undelegate', () => {
win.dispatchEvent(event);
});
cy.get('.v-alert', { timeout: 5000 }).should('have.length', 1);
cy.get('.v-alert').should('contain', 'Insufficient funds. You must have more than 0.00001 CSPR on your wallet.');
cy.get('.v-alert').should('contain', 'Insufficient funds. You must have more than 2.5 CSPR on your wallet.');
cy.wait(1000).window().then((win) => {
msg.detail.activeKey = '01270a577d2d106c4d29402775f3dffcb9f04aad542579dd4d1cfad20572ebcb7c';
win.dispatchEvent(event);
Expand Down

0 comments on commit 13ff359

Please sign in to comment.