Skip to content

Commit

Permalink
Fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasse committed Oct 11, 2024
1 parent 91a6b8f commit b6a4609
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions services/rfq/relayer/relapi/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,12 +203,16 @@ func (c *RelayerServerSuite) getTestQuoteRequest(status reldb.QuoteRequestStatus
TransactionID: txID,
Status: status,
Transaction: fastbridgev2.IFastBridgeV2BridgeTransactionV2{
OriginChainId: c.originChainID,
DestChainId: c.destChainID,
OriginAmount: big.NewInt(100),
DestAmount: big.NewInt(100),
Deadline: big.NewInt(time.Now().Unix()),
Nonce: big.NewInt(0),
OriginChainId: c.originChainID,
DestChainId: c.destChainID,
OriginAmount: big.NewInt(100),
DestAmount: big.NewInt(100),
Deadline: big.NewInt(time.Now().Unix()),
Nonce: big.NewInt(0),
ExclusivityEndTime: big.NewInt(0),
OriginFeeAmount: big.NewInt(0),
CallValue: big.NewInt(0),
CallParams: []byte{},
},
OriginTxHash: common.HexToHash("0x0000000"),
DestTxHash: common.HexToHash("0x0000001"),
Expand Down

0 comments on commit b6a4609

Please sign in to comment.