Quellcode durchsuchen

pioneer: reduce max batch size in staking payouts from 40 to 30

to fit into max block weigth limit
Mokhtar Naamani vor 3 Jahren
Ursprung
Commit
c9eacc49c7
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      pioneer/packages/page-staking/src/Payouts/PayButton.tsx

+ 1 - 1
pioneer/packages/page-staking/src/Payouts/PayButton.tsx

@@ -14,7 +14,7 @@ import { useApi, useToggle } from '@polkadot/react-hooks';
 
 import { useTranslation } from '../translate';
 
-const MAX_BATCH_SIZE = 40;
+const MAX_BATCH_SIZE = 30;
 
 interface Props {
   className?: string;