Added implementation for resolc trait (#12)

Implement the Solidity Compiler trait for resolc
This commit is contained in:
activecoder10
2025-05-08 12:09:02 +03:00
committed by GitHub
parent 8009f5880c
commit 38b42560ec
8 changed files with 115 additions and 12 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
//! This crate defines the testing configuration and
//! provides a helper utilty to execute tests.
use revive_dt_compiler::{SolidityCompiler, solc};
use revive_dt_compiler::{SolidityCompiler, revive_resolc, solc};
use revive_dt_node::geth;
use revive_dt_node_interaction::EthereumNode;
@@ -30,5 +30,5 @@ pub struct Kitchensink;
impl Platform for Kitchensink {
type Blockchain = geth::Instance;
type Compiler = solc::Solc;
type Compiler = revive_resolc::Resolc;
}