test: add ethcall derive test for vec tuples (#1144)
This commit is contained in:
parent
8dd72723d1
commit
77bd9d49c8
|
@ -584,6 +584,15 @@ fn can_derive_array_tuples() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn can_handle_abigen_tuples() {
|
||||||
|
#[derive(Clone, Debug, Default, Eq, PartialEq, EthCall, EthDisplay)]
|
||||||
|
#[ethcall(name = "swap", abi = "swap((uint8,uint8)[])")]
|
||||||
|
pub struct SwapCall {
|
||||||
|
pub pairs_to_swap: ::std::vec::Vec<(u8, u8)>,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn eth_display_works_on_ethers_bytes() {
|
fn eth_display_works_on_ethers_bytes() {
|
||||||
#[derive(Clone, Debug, Default, Eq, PartialEq, EthCall, EthDisplay)]
|
#[derive(Clone, Debug, Default, Eq, PartialEq, EthCall, EthDisplay)]
|
||||||
|
|
Loading…
Reference in New Issue