File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -485,8 +485,6 @@ mod test {
485
485
let token_abi = include_bytes ! ( "../test/resources/tokenabi.json" ) ;
486
486
// adexbytecode.json
487
487
let adex_bytecode = include_str ! ( "../../lib/protocol-eth/resources/bytecode/AdExCore.json" ) ;
488
- // adexabi.json
489
- let adex_abi = include_bytes ! ( "../../lib/protocol-eth/abi/AdExCore.json" ) ;
490
488
491
489
// deploy contracts
492
490
let token_contract = Contract :: deploy ( web3. eth ( ) , token_abi)
@@ -501,7 +499,7 @@ mod test {
501
499
. wait ( )
502
500
. expect ( "failed to wait" ) ;
503
501
504
- let adex_contract = Contract :: deploy ( web3. eth ( ) , adex_abi )
502
+ let adex_contract = Contract :: deploy ( web3. eth ( ) , & ADEXCORE_ABI )
505
503
. expect ( "invalid adex contract" )
506
504
. confirmations ( 0 )
507
505
. options ( Options :: with ( |opt| {
You can’t perform that action at this time.
0 commit comments