소스 검색

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

to fit into max block weigth limit
Mokhtar Naamani 3 년 전
부모
커밋
c9eacc49c7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;