Skip to content

Commit

Permalink
runtime,graph: fix warnings and rebase types
Browse files Browse the repository at this point in the history
runtime: fix rebase problem
  • Loading branch information
gusinacio committed Mar 24, 2023
1 parent ad042a2 commit ceeeb96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion graph/src/data/schema.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use crate::cheap_clone::CheapClone;
use crate::components::store::{EntityKey, EntityType, LoadRelatedRequest, SubgraphStore};
use crate::components::store::{EntityKey, EntityType, LoadRelatedRequest};
use crate::data::graphql::ext::{DirectiveExt, DirectiveFinder, DocumentExt, TypeExt, ValueExt};
use crate::data::graphql::ObjectTypeExt;
use crate::data::store::{self, ValueType};
Expand Down
2 changes: 1 addition & 1 deletion runtime/wasm/src/to_from/external.rs
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ impl ToAscObj<Array<AscPtr<AscEntity>>> for Vec<Vec<(String, store::Value)>> {
&self,
heap: &mut H,
gas: &GasCounter,
) -> Result<Array<AscPtr<AscEntity>>, DeterministicHostError> {
) -> Result<Array<AscPtr<AscEntity>>, HostExportError> {
let content: Result<Vec<_>, _> = self.iter().map(|x| asc_new(heap, &x, gas)).collect();
let content = content?;
Array::new(&content, heap, gas)
Expand Down

0 comments on commit ceeeb96

Please sign in to comment.