Skip to content

Commit

Permalink
doc: comments
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Mar 11, 2024
1 parent fb5f6b7 commit 41be2e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/subgraph/schema.graphql
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Types
type DaoPlugin @entity {
# OSX related data
# OSx related data
id: ID! # PluginInstallationEntityId
dao: Bytes!
pluginAddress: Bytes!

#Plugin specific data"
# Plugin specific data"
proposalCount: BigInt
proposals: [MultisigProposal!]! @derivedFrom(field: "plugin")
members: [MultisigApprover!]! @derivedFrom(field: "plugin")
Expand Down
2 changes: 1 addition & 1 deletion packages/subgraph/tests/utils/events/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export function createMultisigProposalEntityState(
creationBlockNumber: BigInt = new BigInt(0)
): MultisigProposal {
let multisigProposal = new MultisigProposal(entityID);
multisigProposal.dao = Address.fromHexString(dao); //Address.fromString(dao).toHexString();
multisigProposal.dao = Address.fromHexString(dao);
multisigProposal.plugin = Address.fromString(plugin).toHexString();
multisigProposal.pluginProposalId = BigInt.fromString(pluginProposalId);
multisigProposal.creator = Address.fromString(creator);
Expand Down

0 comments on commit 41be2e7

Please sign in to comment.