Skip to content

Commit 110c1b4

Browse files
committed
test fix for testEthEstimateGas
Signed-off-by: Nischal Sharma <[email protected]>
1 parent 6342b6b commit 110c1b4

File tree

1 file changed

+1
-1
lines changed
  • integration-tests/src/test/java/org/web3j/protocol/core

1 file changed

+1
-1
lines changed

integration-tests/src/test/java/org/web3j/protocol/core/CoreIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public void testEthEstimateGas(Web3j web3j, ContractGasProvider gasProvider) thr
302302
gasProvider.getGasPrice(),
303303
config.validContractCode());
304304
EthEstimateGas ethEstimateGas = web3j.ethEstimateGas(transaction).send();
305-
assertEquals(ethEstimateGas.getAmountUsed(), BigInteger.ONE);
305+
assertEquals(ethEstimateGas.getAmountUsed(), BigInteger.valueOf(125305));
306306
}
307307

308308
@Test

0 commit comments

Comments
 (0)