We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1322198 commit cd15f56Copy full SHA for cd15f56
crates/contract/src/call.rs
@@ -835,14 +835,14 @@ mod tests {
835
.expect("tx not included");
836
assert_eq!(
837
transaction.max_fee_per_gas(),
838
- max_fee_per_gas.to(),
+ max_fee_per_gas.to::<u128>(),
839
"max_fee_per_gas of the transaction should be set to the right value"
840
);
841
842
transaction
843
.max_priority_fee_per_gas()
844
.expect("max_priority_fee_per_gas of the transaction should be set"),
845
- max_priority_fee_per_gas.to(),
+ max_priority_fee_per_gas.to::<u128>(),
846
"max_priority_fee_per_gas of the transaction should be set to the right value"
847
)
848
}
0 commit comments