Skip to content

Commit

Permalink
chore: leave exit onDemand implicit
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed Mar 28, 2023
1 parent 57bf88b commit 9e6ba5a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/agoric-cli/test/test-inter-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ const offerSpec1 = harden({
want: mk(bslot.ATOM, 5_000_000n),
},
proposal: {
exit: { onDemand: null },
give: { Currency: mk(bslot.IST, 50_000_000n) },
want: { Collateral: mk(bslot.ATOM, 5_000_000n) },
},
Expand Down
1 change: 0 additions & 1 deletion packages/inter-protocol/src/clientSupport.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,6 @@ const makeBidOffer = (brands, opts) => {
const proposal = {
give,
...('price' in opts ? { want: { Collateral: wantAmt } } : {}),
exit: { onDemand: null },
};

const bounds = (x, lo, hi) => {
Expand Down
2 changes: 0 additions & 2 deletions packages/inter-protocol/test/test-clientSupport.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ test('Offers.auction.Bid', async t => {
callPipe: [['makeBidInvitation', [atom.brand]]],
},
proposal: {
exit: { onDemand: null },
give: { Currency: ist.make(4_560_000n) },
},
offerArgs: {
Expand Down Expand Up @@ -69,7 +68,6 @@ test('Offers.auction.Bid', async t => {
callPipe: [['makeBidInvitation', [atom.brand]]],
},
proposal: {
exit: { onDemand: null },
give: { Currency: ist.make(4_560_000n) },
want: { Collateral: atom.make(1_230_000n) },
},
Expand Down

0 comments on commit 9e6ba5a

Please sign in to comment.