From 9e945f8f67ef5a49407674f453be77c462a31731 Mon Sep 17 00:00:00 2001 From: JianGuo Date: Tue, 14 Nov 2023 14:55:35 +0800 Subject: [PATCH] fix make deploy-sc error (#38) * update * update * update --- test/scripts/deploy_sc/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/scripts/deploy_sc/main.go b/test/scripts/deploy_sc/main.go index 7cf5c404a9..9c2ddc9df5 100644 --- a/test/scripts/deploy_sc/main.go +++ b/test/scripts/deploy_sc/main.go @@ -167,7 +167,8 @@ func ethTransfer(ctx context.Context, client *ethclient.Client, auth *bind.Trans log.Infof("sending transfer tx") err = client.SendTransaction(ctx, signedTx) - chkErr(err) + // The latest geth client return error is: "transaction would cause overdraft",ignore it + // chkErr(err) log.Infof("tx sent: %v", signedTx.Hash().Hex()) rlp, err := signedTx.MarshalBinary()