diff --git a/test/scripts/deploy_sc/main.go b/test/scripts/deploy_sc/main.go index 7cf5c404a9..eda686da1a 100644 --- a/test/scripts/deploy_sc/main.go +++ b/test/scripts/deploy_sc/main.go @@ -133,14 +133,6 @@ func main() { to := common.HexToAddress(receiverAddr) tx = ethTransfer(ctx, client, auth, to, transferAmount, nil) fmt.Println() - - // Invalid ETH Transfer - log.Debugf("Sending Invalid TX to transfer ETH") - nonce := tx.Nonce() + 1 - ethTransfer(ctx, client, auth, to, transferAmount, &nonce) - err = operations.WaitTxToBeMined(ctx, client, tx, txTimeout) - chkErr(err) - fmt.Println() } }