File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
packages/fast-usdc-contract/src Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ export const stateShape = harden({
142
142
export const prepareSettler = (
143
143
zone : Zone ,
144
144
{
145
- chainHub, // TODO POLA
145
+ chainHub,
146
146
feeConfig,
147
147
forwardFunds,
148
148
getNobleICA,
@@ -153,7 +153,7 @@ export const prepareSettler = (
153
153
withdrawToSeat,
154
154
zcf,
155
155
} : {
156
- chainHub : ChainHub ;
156
+ chainHub : Pick < ChainHub , 'resolveAccountId' > ;
157
157
feeConfig : FeeConfig ;
158
158
forwardFunds : ( tx : {
159
159
txHash : EvmHash ;
Original file line number Diff line number Diff line change @@ -171,7 +171,8 @@ export const contract = async (
171
171
getNobleICA,
172
172
vowTools : tools . vowTools ,
173
173
zcf,
174
- chainHub,
174
+ // UNTIL we have an generic way to attenuate an Exo https://github.com/Agoric/agoric-sdk/issues/11309
175
+ chainHub : { resolveAccountId : chainHub . resolveAccountId . bind ( chainHub ) } ,
175
176
} ) ;
176
177
177
178
const zoeTools = makeZoeTools ( zcf , vowTools ) ;
You can’t perform that action at this time.
0 commit comments