Skip to content

Commit d5ce126

Browse files
authored
EvmHost: Add fee to GetRequestEvent (#278)
1 parent 66c3f7d commit d5ce126

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

evm/abi/src/generated/evm_host.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -1539,6 +1539,13 @@ pub mod evm_host {
15391539
),
15401540
indexed: false,
15411541
},
1542+
::ethers::core::abi::ethabi::EventParam {
1543+
name: ::std::borrow::ToOwned::to_owned("fee"),
1544+
kind: ::ethers::core::abi::ethabi::ParamType::Uint(
1545+
256usize,
1546+
),
1547+
indexed: false,
1548+
},
15421549
],
15431550
anonymous: false,
15441551
},
@@ -3394,7 +3401,7 @@ pub mod evm_host {
33943401
)]
33953402
#[ethevent(
33963403
name = "GetRequestEvent",
3397-
abi = "GetRequestEvent(string,string,address,bytes[],uint256,uint256,uint256)"
3404+
abi = "GetRequestEvent(string,string,address,bytes[],uint256,uint256,uint256,uint256)"
33983405
)]
33993406
pub struct GetRequestEventFilter {
34003407
pub source: ::std::string::String,
@@ -3405,6 +3412,7 @@ pub mod evm_host {
34053412
pub height: ::ethers::core::types::U256,
34063413
pub nonce: ::ethers::core::types::U256,
34073414
pub timeout_timestamp: ::ethers::core::types::U256,
3415+
pub fee: ::ethers::core::types::U256,
34083416
}
34093417
#[derive(
34103418
Clone,

0 commit comments

Comments
 (0)