Solidity

當我嘗試在測試網上部署 bnb 獎勵合約時出現 Gas 錯誤

  • November 21, 2021

我簽訂了契約-程式碼在這裡:程式碼連結

契約編譯。現在我嘗試在 BSC 測試網上進行部署,但失敗了:

Gas estimation errored with the following message (see below).
The transaction execution will likely fail. Do you want to force sending?
Internal JSON-RPC error. { "code": -32000, "message": "execution reverted" }

映射合約似乎部署正確

這個錯誤的原因是什麼?

問題是路由器地址

   IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E);

不是 bsc testnet 中的契約。

引用自:https://ethereum.stackexchange.com/questions/113988