Skip to content

Commit

Permalink
Merge pull request #384 from input-output-hk/fix/reward-stakereregist…
Browse files Browse the repository at this point in the history
…ration-order-by

Fix/reward stakereregistration order by
  • Loading branch information
rhyslbw authored Dec 9, 2020
2 parents 159c711 + a6f9a88 commit a113b49
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions config/network/allegra/cardano-node/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@
],
"cardano.node.metrics": [
"EKGViewBK"
],
"cardano.node.resources": [
"EKGViewBK"
]
},
"mapSubtrace": {
Expand Down
3 changes: 3 additions & 0 deletions config/network/launchpad/cardano-node/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@
],
"cardano.node.metrics": [
"EKGViewBK"
],
"cardano.node.resources": [
"EKGViewBK"
]
},
"mapSubtrace": {
Expand Down
3 changes: 3 additions & 0 deletions config/network/mainnet/cardano-node/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,9 @@
"kind": "UserDefinedBK",
"name": "LiveViewBackend"
}
],
"cardano.node.resources": [
"EKGViewBK"
]
},
"mapSubtrace": {
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
max-size: "200k"
max-file: "10"
cardano-node:
image: rhyslbw/cardano-node:${CARDANO_NODE_VERSION:-c6c5758aa5991a1c0d821622349f39c12a40e1ad}
image: inputoutput/cardano-node:${CARDANO_NODE_VERSION:-1.24.2}
command: [
"run",
"--config", "/config/config.json",
Expand Down
6 changes: 3 additions & 3 deletions packages/api-cardano-db-hasura/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ input Reward_bool_exp {
}

input Reward_order_by {
address: StakeAddress_comparison_exp
amount: text_comparison_exp
address: order_by
amount: order_by
earnedIn: Epoch_order_by
stakePool: StakePool_order_by
}
Expand Down Expand Up @@ -433,7 +433,7 @@ type StakeDeregistration_aggregate_fields {
}

input StakeDeregistration_order_by {
address: StakeAddress_comparison_exp
address: order_by
transaction: Transaction_order_by
}

Expand Down

0 comments on commit a113b49

Please sign in to comment.