We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d58a9e0 commit 407b78cCopy full SHA for 407b78c
test/compiler.js
@@ -439,6 +439,7 @@ function runTests (solc, versionText) {
439
var B = getBytecodeStandard(output, 'b.sol', 'B');
440
st.ok(typeof B === 'string');
441
st.ok(B.length > 0);
442
+ st.ok(Object.keys(linker.findLinkReferences(B)).length === 0);
443
var BGas = getGasEstimate(output, 'b.sol', 'B');
444
st.ok(typeof BGas === 'object');
445
st.ok(typeof BGas['creation'] === 'object');
@@ -493,6 +494,7 @@ function runTests (solc, versionText) {
493
494
495
496
497
498
st.end();
499
});
500
0 commit comments