Skip to content

Commit aa39d65

Browse files
authored
add support for Receipt#events_root (#1)
1 parent 93f90c3 commit aa39d65

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

fvm_actor_utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cid = { version = "0.8.3", default-features = false, features = ["serde-codec"]
1313
frc42_dispatch = { version = "1.0.0", path = "../frc42_dispatch" }
1414
fvm_ipld_blockstore = "0.1.1"
1515
fvm_ipld_encoding = "0.3.0"
16-
fvm_shared = "3.0.0-alpha.8"
17-
fvm_sdk = "3.0.0-alpha.8"
16+
fvm_shared = "3.0.0-alpha.11"
17+
fvm_sdk = "3.0.0-alpha.11"
1818
num-traits = { version = "0.2.15" }
1919
thiserror = { version = "1.0.31" }

fvm_actor_utils/src/messaging.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,11 @@ impl Messaging for FakeMessenger {
178178
exit_code: ExitCode::USR_UNSPECIFIED,
179179
gas_used: 0,
180180
return_data: Default::default(),
181+
events_root: None,
181182
});
182183
}
183184

184-
Ok(Receipt { exit_code: ExitCode::OK, return_data: Default::default(), gas_used: 0 })
185+
Ok(Receipt { exit_code: ExitCode::OK, return_data: Default::default(), gas_used: 0, events_root: None })
185186
}
186187

187188
fn resolve_id(&self, address: &Address) -> Result<ActorID> {

0 commit comments

Comments
 (0)