Skip to content

Commit

Permalink
fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Jan 29, 2025
1 parent 035cf9c commit 5ad68d5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions inabox/tests/integration_v2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ import (
"context"
"crypto/rand"
"fmt"
"github.com/docker/go-units"
"math/big"
"time"

"github.com/docker/go-units"

"github.com/Layr-Labs/eigenda/api/clients/v2"
commonpb "github.com/Layr-Labs/eigenda/api/grpc/common/v2"
disperserpb "github.com/Layr-Labs/eigenda/api/grpc/disperser/v2"
Expand Down Expand Up @@ -303,12 +304,12 @@ func convertBlobInclusionInfo(inclusionInfo *disperserpb.BlobInclusionInfo) (*ve
Y: commitY,
},
LengthCommitment: verifierbindings.BN254G2Point{
X: [2]*big.Int{lengthCommitX0, lengthCommitX1},
Y: [2]*big.Int{lengthCommitY0, lengthCommitY1},
X: [2]*big.Int{lengthCommitX1, lengthCommitX0},
Y: [2]*big.Int{lengthCommitY1, lengthCommitY0},
},
LengthProof: verifierbindings.BN254G2Point{
X: [2]*big.Int{lengthProofX0, lengthProofX1},
Y: [2]*big.Int{lengthProofY0, lengthProofY1},
X: [2]*big.Int{lengthProofX1, lengthProofX0},
Y: [2]*big.Int{lengthProofY1, lengthProofY0},
},
Length: uint32(blobCertificate.BlobHeader.BlobCommitments.Length),
},
Expand Down

0 comments on commit 5ad68d5

Please sign in to comment.