Skip to content

Commit

Permalink
Fix trybuild?
Browse files Browse the repository at this point in the history
  • Loading branch information
deekerno committed Aug 29, 2023
1 parent 0ac9e7f commit 8290728
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ use fuel_indexer_utils::prelude::*;
fn ff_log_data(_inp: ()) {}

#[no_mangle]
fn ff_put_object(_inp: ()) {}
fn ff_put_object(_inp: ()) -> Result<(), ()> {}

#[no_mangle]
fn ff_put_many_to_many_record(_inp: ()) {}
fn ff_put_many_to_many_record(_inp: ()) -> Result<(), ()> {}

#[indexer(manifest = "packages/fuel-indexer-tests/trybuild/simple_wasm.yaml")]
mod indexer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ use fuel_indexer_utils::prelude::*;
fn ff_log_data(_inp: ()) {}

#[no_mangle]
fn ff_put_object(_inp: ()) {}
fn ff_put_object(_inp: ()) -> Result<(), ()> {}

#[no_mangle]
fn ff_put_many_to_many_record(_inp: ()) {}
fn ff_put_many_to_many_record(_inp: ()) -> Result<(), ()> {}

#[indexer(manifest = "packages/fuel-indexer-tests/trybuild/simple_wasm.yaml")]
mod indexer {
Expand Down

0 comments on commit 8290728

Please sign in to comment.