From 12c4cf6b7d74f7f474060a13d83d6978a7fa7887 Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 12 Dec 2017 17:45:12 +0100 Subject: [PATCH] fix library deploy --- src/app/execution/txFormat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/execution/txFormat.js b/src/app/execution/txFormat.js index eafe5b7e26..e81f5f91ea 100644 --- a/src/app/execution/txFormat.js +++ b/src/app/execution/txFormat.js @@ -140,7 +140,7 @@ module.exports = { } var bytecode = library.evm.bytecode.object if (bytecode.indexOf('_') >= 0) { - this.linkBytecode(libraryName, contracts, udapp, (err, bytecode) => { + this.linkBytecode(library, contracts, udapp, (err, bytecode) => { if (err) callback(err) else this.deployLibrary(libraryName, libraryShortName, library, contracts, udapp, callback, callbackStep) }, callbackStep)