Skip to content

Commit

Permalink
small justfile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Buckram123 committed Dec 21, 2022
1 parent fe9bb81 commit c2402de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ gen:
#!/usr/bin/env bash
cd typescript
yarn --cwd ./typescript build
yarn --cwd ./typescript install --frozen-lockfile
yarn --cwd ./typescript codegen
yarn --cwd ./typescript install --frozen-lockfile
juno-local:
docker kill cosmwasm || true
docker volume rm -f junod_data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,14 @@ exports.CwCroncatCoreQueryClient = CwCroncatCoreQueryClient;
class CwCroncatCoreClient extends CwCroncatCoreQueryClient {
constructor(client, sender, contractAddress) {
super(client, contractAddress);
this.updateSettings = ({ agentFee, agentsEjectThreshold, gasActionFee, gasBaseFee, gasFraction, gasQueryFee, gasWasmQueryFee, minTasksPerAgent, ownerId, paused, proxyCallbackGas, slotGranularityTime }, fee = "auto", memo, funds) => __awaiter(this, void 0, void 0, function* () {
this.updateSettings = ({ agentFee, agentsEjectThreshold, gasActionFee, gasBaseFee, gasPrice, gasQueryFee, gasWasmQueryFee, minTasksPerAgent, ownerId, paused, proxyCallbackGas, slotGranularityTime }, fee = "auto", memo, funds) => __awaiter(this, void 0, void 0, function* () {
return yield this.client.execute(this.sender, this.contractAddress, {
update_settings: {
agent_fee: agentFee,
agents_eject_threshold: agentsEjectThreshold,
gas_action_fee: gasActionFee,
gas_base_fee: gasBaseFee,
gas_fraction: gasFraction,
gas_price: gasPrice,
gas_query_fee: gasQueryFee,
gas_wasm_query_fee: gasWasmQueryFee,
min_tasks_per_agent: minTasksPerAgent,
Expand Down

0 comments on commit c2402de

Please sign in to comment.