Fix missing constructor calldata logging when deploying contracts

pull/2358/head
David Núñez 2020-10-14 11:55:28 +02:00
parent 6c385ba426
commit 5e6e2cfee3
1 changed files with 1 additions and 1 deletions

View File

@ -831,7 +831,7 @@ class BlockchainDeployerInterface(BlockchainInterface):
constructor_function,
*constructor_args,
**constructor_kwargs)
if not constructor_calldata:
if constructor_calldata:
self.log.info(f"Constructor calldata: {constructor_calldata}")
#