Skip to content

Commit

Permalink
fix bad rebase?
Browse files Browse the repository at this point in the history
  • Loading branch information
ra0x3 committed Nov 2, 2023
1 parent f95dddc commit f25910d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,13 @@ fuel-indexer-utils = { version = "0.23.0", path = "./packages/fuel-indexer-utils
fuel-tx = { version = "=0.35.3", default-features = false }
fuel-types = { version = "=0.35.3", default-features = false, features = ["serde"] }
fuel-vm = { version = "=0.35.3", default-features = false }
<<<<<<< HEAD
fuels = { version = "0.49", default-features = false }
=======
# fuels = { version = "0.46", default-features = false }
fuels = { git = "https://github.com/FuelLabs/fuels", branch = "hal3e/predicate-abigen-wasm", default-features = false }
>>>>>>> a0a5ec17 (post halil chat)
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1.0", default-features = false }
thiserror = "1.0"
tokio = "1.28"
tokio-util = "0.7"
tracing = "0.1"

# [patch.crates-io]
# fuels = { git = "https://github.com/FuelLabs/fuels.git", branch = "master", default-features = false }
5 changes: 3 additions & 2 deletions packages/fuel-indexer-macros/src/indexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,8 @@ fn process_fn_items(
#subscribed_contract_ids

let mut process_transaction = |decoder: &mut Decoders, tx: fuel::TransactionData| -> anyhow::Result<()> {
match &tx_data.transaction {
let tx_id = tx.id;
match &tx.transaction {
fuel::Transaction::Script(script) => {
let fuel::Script {
inputs,
Expand Down Expand Up @@ -908,7 +909,7 @@ fn process_fn_items(
utxo.to == *owner
});


let configurable = match pred {
Some(p) => {
let template_id = p.template_id().to_string();
Expand Down

0 comments on commit f25910d

Please sign in to comment.