test: comment out etherscan abigen! test (#1616)

This commit is contained in:
Matthias Seitz 2022-08-19 17:18:03 +02:00 committed by GitHub
parent 92b51b6d9f
commit c51dcffec6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 11 deletions

View File

@ -557,17 +557,18 @@ async fn can_abiencoderv2_output() {
assert_eq!(res, person); assert_eq!(res, person);
} }
#[test] // NOTE: this is commented out because this would result in compiler errors if key not set or
fn can_gen_multi_etherscan() { // etherscan API not working #[test]
abigen!( // fn can_gen_multi_etherscan() {
MyContract, "etherscan:0xdAC17F958D2ee523a2206206994597C13D831ec7"; // abigen!(
MyContract2, "etherscan:0x8418bb725b3ac45ec8fff3791dd8b4e0480cc2a2"; // MyContract, "etherscan:0xdAC17F958D2ee523a2206206994597C13D831ec7";
); // MyContract2, "etherscan:0x8418bb725b3ac45ec8fff3791dd8b4e0480cc2a2";
// );
let provider = Arc::new(Provider::new(MockProvider::new())); //
let _contract = MyContract::new(Address::default(), Arc::clone(&provider)); // let provider = Arc::new(Provider::new(MockProvider::new()));
let _contract = MyContract2::new(Address::default(), provider); // let _contract = MyContract::new(Address::default(), Arc::clone(&provider));
} // let _contract = MyContract2::new(Address::default(), provider);
// }
#[test] #[test]
fn can_gen_reserved_word_field_names() { fn can_gen_reserved_word_field_names() {