Skip to content

Commit

Permalink
chore: clarify feeDistributor messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris-Hibbert committed Nov 26, 2024
1 parent b194320 commit 3f2063b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SECONDS_PER_HOUR } from '@agoric/inter-protocol/src/proposals/econ-beha

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').CoreEvalBuilder} */
export const defaultProposalBuilder = async (_, opts) => {
console.log('OPTS', opts);
console.log('feeDist OPTS', opts);
return harden({
sourceSpec:
'@agoric/inter-protocol/src/proposals/replace-fee-distributor.js',
Expand All @@ -16,7 +16,7 @@ export const defaultProposalBuilder = async (_, opts) => {
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);

await writeCoreEval('replace-feeDistributor-testing', utils =>
await writeCoreEval('replace-feeDistributor', utils =>
defaultProposalBuilder(utils, {
collectionInterval: 1n * SECONDS_PER_HOUR,
keywordShares: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { getManifestForReplaceFeeDistributor } from '@agoric/inter-protocol/src/

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').CoreEvalBuilder} */
export const defaultProposalBuilder = async (_, opts) => {
console.log('OPTS', opts);
console.log('feeDist OPTS', opts);
return harden({
sourceSpec:
'@agoric/inter-protocol/src/proposals/replace-fee-distributor.js',
Expand Down

0 comments on commit 3f2063b

Please sign in to comment.