(account_polymath)
| 217 | } |
| 218 | |
| 219 | async function deployGTMLogic(account_polymath) { |
| 220 | I_GeneralTransferManagerLogic = await GeneralTransferManager.new( |
| 221 | "0x0000000000000000000000000000000000000000", |
| 222 | "0x0000000000000000000000000000000000000000", |
| 223 | { from: account_polymath } |
| 224 | ); |
| 225 | |
| 226 | assert.notEqual( |
| 227 | I_GeneralTransferManagerLogic.address.valueOf(), |
| 228 | "0x0000000000000000000000000000000000000000", |
| 229 | "GeneralTransferManagerLogic contract was not deployed" |
| 230 | ); |
| 231 | |
| 232 | return new Array(I_GeneralTransferManagerLogic); |
| 233 | } |
| 234 | |
| 235 | async function deployGTM(account_polymath) { |
| 236 | I_GeneralTransferManagerFactory = await GeneralTransferManagerFactory.new(new BN(0), new BN(0), I_GeneralTransferManagerLogic.address, I_PolymathRegistry.address, true, { |
no outgoing calls
no test coverage detected