Bump Substrate WASM builder (#947)

This commit is contained in:
Hernando Castano
2021-05-03 15:45:46 -04:00
committed by Bastian Köcher
parent 92b1860f5a
commit 7ebae6fa9e
6 changed files with 8 additions and 10 deletions
+2 -3
View File
@@ -14,13 +14,12 @@
// You should have received a copy of the GNU General Public License
// along with Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>.
use wasm_builder_runner::WasmBuilder;
use substrate_wasm_builder::WasmBuilder;
fn main() {
WasmBuilder::new()
.with_current_project()
.with_wasm_builder_from_crates("1.0.11")
.export_heap_base()
.import_memory()
.export_heap_base()
.build()
}