Skip to content

Commit

Permalink
store: Reuse web3 dependency from graph crate
Browse files Browse the repository at this point in the history
  • Loading branch information
tilacog committed Aug 18, 2021
1 parent 43ab930 commit 704fefc
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions store/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ anyhow = "1.0.41"
git-testament = "0.2.0"
itertools = "0.10.1"

# Our fork contains a small but hacky patch.
web3 = { git = "https://github.com/graphprotocol/rust-web3", branch = "master" }

[dev-dependencies]
clap = "2.33.3"
graphql-parser = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion store/postgres/src/transaction_receipt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ use diesel::{
sql_types::{Binary, Nullable},
};
use diesel_derives::{Queryable, QueryableByName};
use graph::prelude::web3::types::H256;
use itertools::Itertools;
use std::convert::TryFrom;
use web3::types::H256;

use graph::prelude::transaction_receipt::LightTransactionReceipt;

Expand Down

0 comments on commit 704fefc

Please sign in to comment.