We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b46886d commit d1b6b0bCopy full SHA for d1b6b0b
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