Skip to content

Commit

Permalink
Fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
dwasse committed Oct 11, 2024
1 parent b6a4609 commit 05ab3dd
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions services/rfq/relayer/reldb/base/model_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,20 @@ func TestRoundtripBetweenFromQuoteRequestAndToQuoteRequest(t *testing.T) {
RawRequest: []byte(gofakeit.Paragraph(1, 2, 3, " ")),
Sender: common.Address{},
Transaction: fastbridgev2.IFastBridgeV2BridgeTransactionV2{
OriginChainId: 1,
DestChainId: 2,
OriginSender: common.Address{},
DestRecipient: common.Address{},
OriginToken: common.Address{},
DestToken: common.Address{},
OriginAmount: big.NewInt(1000),
DestAmount: big.NewInt(2000),
Deadline: big.NewInt(time.Now().Unix()),
Nonce: big.NewInt(1),
OriginChainId: 1,
DestChainId: 2,
OriginSender: common.Address{},
DestRecipient: common.Address{},
OriginToken: common.Address{},
DestToken: common.Address{},
OriginAmount: big.NewInt(1000),
DestAmount: big.NewInt(2000),
Deadline: big.NewInt(time.Now().Unix()),
Nonce: big.NewInt(1),
ExclusivityEndTime: big.NewInt(0),
OriginFeeAmount: big.NewInt(0),
CallValue: big.NewInt(0),
CallParams: []byte{},
},
Status: reldb.QuoteRequestStatus(1),
}
Expand Down

0 comments on commit 05ab3dd

Please sign in to comment.