From df99d58a00d459c160597e10a602929041eec87f Mon Sep 17 00:00:00 2001 From: Nguyen Sy Thanh Son Date: Tue, 7 Aug 2018 06:41:26 +0000 Subject: [PATCH] fix blocksigner deploy --- contracts/utils_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/utils_test.go b/contracts/utils_test.go index 9bfc9aa94b..78b068dcf6 100644 --- a/contracts/utils_test.go +++ b/contracts/utils_test.go @@ -50,7 +50,7 @@ func TestSendTxSign(t *testing.T) { ctx := context.Background() transactOpts := bind.NewKeyedTransactor(acc1Key) - blockSignerAddr, blockSigner, err := blocksigner.DeployBlockSigner(transactOpts, backend) + blockSignerAddr, blockSigner, err := blocksigner.DeployBlockSigner(transactOpts, backend, big.NewInt(99)) if err != nil { t.Fatalf("Can't get block signer: %v", err) }