Skip to content

Commit

Permalink
Remove experimental warnings (TrueFiEng#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
VladStarostenko authored Jun 3, 2020
1 parent bad0fa7 commit f3156fd
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 12 deletions.
5 changes: 2 additions & 3 deletions docs/source/compilation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,8 @@ If no :code:`compilerVersion` is specified the docker tag pulled defaults to
When compiling your smart contracts Waffle will now use the docker image you
pulled.

*Experimental* Using dockerized vyper
-------------------------------------
Warring! This is experimental and the api might change without major version change.
Using dockerized vyper
----------------------

This is the option if you have contracts in Vyper. You will need Docker installed.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Allowed values:
- :code:`solcjs` (default)
- :code:`native`
- :code:`dockerized-solc`
- :code:`dockerized-vyper` (experimental version)
- :code:`dockerized-vyper`

Example:

Expand Down
1 change: 0 additions & 1 deletion waffle-compiler/src/compileDockerVyper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const CONTAINER_PATH = '/project';

export function compileDockerVyper(config: Config) {
return async function compile(sources: ImportFile[]) {
console.log('Warning! This is experimental and the api might change without major version change.');
const command = createBuildCommand(config);
const input = getCompilerInput(sources, config.compilerOptions, 'Vyper');
const output = await executeCommand(command, input);
Expand Down
3 changes: 0 additions & 3 deletions waffle-mock-contract/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@

Library for mocking smart contract dependencies during unit testing.

## Warning
@ethereum-waffle/mock-contract is an experimental package. Breaking changes will not result in a new major version.

## Installation
In the current version of waffle (v2.x.x) you will install this package as a dependency of the main waffle package - `ethereum-waffle`.

Expand Down
4 changes: 0 additions & 4 deletions waffle-mock-contract/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ export interface MockContract extends Contract {
}

export async function deployMockContract(wallet: Wallet, abi: ABI): Promise<MockContract> {
console.warn(
'deployMockContract is an experimental feature. ' +
'Breaking changes will not result in a new major version'
);
const mockContractInstance = await deploy(wallet);

const mock = createMock(abi, mockContractInstance);
Expand Down

0 comments on commit f3156fd

Please sign in to comment.