Skip to content

Commit 27de04c

Browse files
committed
graph, runtime: Use graph-patches ethabi branch, cargo fmt
1 parent bdbf91d commit 27de04c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

graph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ diesel = { version = "1.3.2", features = ["postgres", "serde_json", "numeric", "
1414
# But, graph-patches also contains Jannis' https://github.com/paritytech/ethabi/pull/140 PR
1515
# to ethabi. Which we believe will not get merged. For now, we shall deviate from ethabi,
1616
# but long term we want to avoid forking off ethabi if possible
17-
ethabi = { git = "https://github.com/graphprotocol/ethabi.git", branch = "ford/tuple" }
17+
ethabi = { git = "https://github.com/graphprotocol/ethabi.git", branch = "graph-patches" }
1818
hex = "0.3.2"
1919
futures = "0.1.21"
2020
graphql-parser = "0.2.1"

runtime/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99
# But, graph-patches also contains Jannis' https://github.com/paritytech/ethabi/pull/140 PR
1010
# to ethabi. Which we believe will not get merged. For now, we shall deviate from ethabi,
1111
# but long term we want to avoid forking off ethabi if possible
12-
ethabi = { git = "https://github.com/graphprotocol/ethabi.git", branch = "ford/tuple" }
12+
ethabi = { git = "https://github.com/graphprotocol/ethabi.git", branch = "graph-patches" }
1313
futures = "0.1.21"
1414
hex = "0.3.2"
1515
graph = { path = "../../graph" }

runtime/wasm/src/to_from/external.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ impl FromAscObj<AscEnum<EthereumValueKind>> for ethabi::Token {
150150
let ptr: AscEnumArray<EthereumValueKind> = AscPtr::from(payload);
151151
Token::Array(heap.asc_get(ptr))
152152
}
153-
EthereumValueKind::Tuple=> {
153+
EthereumValueKind::Tuple => {
154154
let ptr: AscEnumArray<EthereumValueKind> = AscPtr::from(payload);
155155
Token::Tuple(heap.asc_get(ptr))
156156
}

0 commit comments

Comments
 (0)