From 217a3cd3e8038f03803de168bd21a802e5a8f65a Mon Sep 17 00:00:00 2001 From: Chris Hibbert Date: Wed, 28 Feb 2024 17:07:40 -0800 Subject: [PATCH] feat: disable recoverSets in priceAuthority and fluxAggregator --- packages/inter-protocol/src/price/fluxAggregatorContract.js | 1 + packages/zoe/src/contractSupport/priceAuthorityQuoteMint.js | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/inter-protocol/src/price/fluxAggregatorContract.js b/packages/inter-protocol/src/price/fluxAggregatorContract.js index d8050c26a18a..84f6b8eb17d3 100644 --- a/packages/inter-protocol/src/price/fluxAggregatorContract.js +++ b/packages/inter-protocol/src/price/fluxAggregatorContract.js @@ -74,6 +74,7 @@ export const start = async (zcf, privateArgs, baggage) => { 'set', undefined, undefined, + { recoverySetsOption: 'noRecoverySets' }, ); const { diff --git a/packages/zoe/src/contractSupport/priceAuthorityQuoteMint.js b/packages/zoe/src/contractSupport/priceAuthorityQuoteMint.js index 769b08643ac3..46531ffc125c 100644 --- a/packages/zoe/src/contractSupport/priceAuthorityQuoteMint.js +++ b/packages/zoe/src/contractSupport/priceAuthorityQuoteMint.js @@ -17,6 +17,7 @@ export const provideQuoteMint = baggage => { AssetKind.SET, undefined, undefined, + { recoverySetsOption: 'noRecoverySets' }, ); return issuerKit.mint; };