From 53bb57882daa7c261d5280ee1ae1420a5f535fde Mon Sep 17 00:00:00 2001 From: Dirk McCormick Date: Wed, 22 Jul 2020 15:30:43 -0400 Subject: [PATCH] fix: supply sufficient funds to actor in paych test --- api/test/paych.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/test/paych.go b/api/test/paych.go index 5972747c9..8ec39d4a5 100644 --- a/api/test/paych.go +++ b/api/test/paych.go @@ -58,7 +58,7 @@ func TestPaymentChannels(t *testing.T, b APIBuilder, blocktime time.Duration) { t.Fatal(err) } - sendFunds(ctx, t, paymentCreator, receiverAddr, abi.NewTokenAmount(1000)) + sendFunds(ctx, t, paymentCreator, receiverAddr, abi.NewTokenAmount(1e10)) // setup the payment channel createrAddr, err := paymentCreator.WalletDefaultAddress(ctx)