Skip to content

Commit

Permalink
Fix docker for helium-vote
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Jun 21, 2024
1 parent 82a0a3c commit 569c9f3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docker-info.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"web": {
"helium-vote-service": "./packages/helium-vote-service",
"solana-monitor": "./packages/monitor-service",
"ecc-verifier": "./utils/ecc-sig-verifier",
"entity-metadata-service": "./packages/metadata-service",
Expand All @@ -20,4 +21,4 @@
"data": {
"active-hotspot-oracle": "./utils/active-hotspot-oracle"
}
}
}
2 changes: 1 addition & 1 deletion packages/helium-admin-cli/src/create-subdao.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export async function run(args: any = process.argv) {
},
delegationSeasonsFile: {
type: "string",
default: `${__dirname}/../../delegation-seasons.json`,
default: `${__dirname}/../../proxy-seasons.json`,
},
});
const argv = await yarg.argv;
Expand Down
2 changes: 1 addition & 1 deletion tests/voter-stake-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ describe("voter-stake-registry", () => {
markerA = await program.account.voteMarkerV0.fetchNullable(
marker! as PublicKey
);
expect(markerA).to.be.null;
expect(markerA?.choices).to.be.empty;
});

it("allows earlier proxies to change the vote", async () => {
Expand Down

0 comments on commit 569c9f3

Please sign in to comment.