File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
noir-projects/noir-contracts/contracts/app/orderbook_contract/src Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,8 @@ unconstrained fn setup_tokens(
2020 "TK00000000000000000000000000000" ,
2121 18 ,
2222 );
23- let token0_address = env .deploy ("Token" ).with_public_initializer (owner , token0_initializer );
23+ let token0_address =
24+ env .deploy ("@token_contract/Token" ).with_public_initializer (owner , token0_initializer );
2425
2526 // Deploy second token contract
2627 let token1_initializer = Token ::interface ().constructor (
@@ -29,7 +30,8 @@ unconstrained fn setup_tokens(
2930 "TK11111111111111111111111111111" ,
3031 18 ,
3132 );
32- let token1_address = env .deploy ("Token" ).with_public_initializer (owner , token1_initializer );
33+ let token1_address =
34+ env .deploy ("@token_contract/Token" ).with_public_initializer (owner , token1_initializer );
3335
3436 (token0_address , token1_address )
3537}
You can’t perform that action at this time.
0 commit comments