fix: outgoing exceeding tests

This commit is contained in:
im-adithya
2023-12-05 12:29:49 +05:30
parent f542466811
commit 62d7ffb7fe
2 changed files with 1 additions and 2 deletions

View File

@@ -233,7 +233,7 @@ func (suite *PaymentTestSuite) TestOutgoingExceededChecks() {
//try to make external payment
//which should fail
//create external invoice
externalSatRequested := 500
externalSatRequested := 400
externalInvoice := lnrpc.Invoice{
Memo: "integration tests: external pay from user",
Value: int64(externalSatRequested),

View File

@@ -277,6 +277,5 @@ func (svc *LndhubService) GetVolumeOverPeriod(ctx context.Context, userId int64,
if err != nil {
return 0, err
}
fmt.Println(result, "volume ")
return result, nil
}