add message to changelog for #467 (#474)

This commit is contained in:
phil-ociraptor 2022-05-11 22:17:17 -05:00 committed by GitHub
parent a7f23a982e
commit d5eef93a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -13,6 +13,10 @@
{ {
"note": "Offboard Eth2Dai", "note": "Offboard Eth2Dai",
"pr": 470 "pr": 470
},
{
"note": "Add an optional IRfqClient for SwapQuoter#getSwapQuoteAsync",
"pr": 467
} }
] ]
}, },

View File

@ -328,7 +328,7 @@ export class SwapQuoter {
assetFillAmount: BigNumber, assetFillAmount: BigNumber,
marketOperation: MarketOperation, marketOperation: MarketOperation,
options: Partial<SwapQuoteRequestOpts>, options: Partial<SwapQuoteRequestOpts>,
rfqClient: IRfqClient | undefined, rfqClient?: IRfqClient | undefined,
): Promise<SwapQuote> { ): Promise<SwapQuote> {
assert.isETHAddressHex('makerToken', makerToken); assert.isETHAddressHex('makerToken', makerToken);
assert.isETHAddressHex('takerToken', takerToken); assert.isETHAddressHex('takerToken', takerToken);