Baobab 가스비 상향 질문드립니다

baobab 에 배포하던중에 날짜가 딱 바껴서 해보니
실패해서요
baobab 가스비 상향 때문에 그런가 해서요

https://ko.docs.klaytn.com/smart-contract/ide-and-tools/truffle
이 문서에서 gas: “8500000”
이부분 값을 변경해야할까요?

아래는 truffle deploy 중 에러 로그 입니다.

Starting migrations...
======================
> Network name:    'baobab'
> Network id:      1001
> Block gas limit: 0 (0x0)


2_deploy_contracts.js
=====================

   Deploying 'PlantosyDak'
   -----------------------
   > transaction hash:    0xa10e52bd2e97ef4e928fdbccc15ca4cfc8a7b69a99c499b41f035d2ffcf38ec6

Error:  *** Deployment Failed ***

"PlantosyDak" received a generic error from Geth that
can be caused by hitting revert in a contract constructor or running out of gas.
   * gas required exceeds allowance or always failing transaction.
   * Try: + using the '--dry-run' option to reproduce this failure with clearer errors.
          + verifying that your gas is adequate for this deployment.
(생략)

Baobab 네트워크의 Gas price 변경 시점은 84672000 블록입니다. 현재 시간 기준으로 약 1시간정도 이후입니다.

언급주신 트랜잭션의 실패 원인은 Scope에서 해당 트랜잭션을 조회해보면 확인하실 수 있습니다.

트랜잭션 데이터를 확인해보면 gas price는 현재 네트워크와 동일한 25 ston으로 설정되어 있습니다.
트랜잭션 실패의 원인은 ErrMaxCodeSizeExceed 로 출력되는데, 이는 배포되는 컨트랙트의 코드가 너무 커서 발생하는 오류입니다. 컨트랙트 사이즈를 줄이셔야할 거 같습니다.
참고로, 배포된 컨트랙트의 최대 허용 사이즈는 24576 Byte 입니다.