Skip to content

Commit 5750638

Browse files
committed
Added getter method for contract mnemonic bytecode
1 parent 42a60be commit 5750638

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main/java/it/unipr/analysis/contract/SmartContract.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,15 @@ public String getBytecode() {
298298
return _bytecode;
299299
}
300300

301+
/**
302+
* Returns the contract mnemonic bytecode.
303+
*
304+
* @return The raw mnemonic bytecode.
305+
*/
306+
public String getMnemonicBytecode() {
307+
return _mnemonicBytecode;
308+
}
309+
301310
/**
302311
* Returns the contract ABI.
303312
*

0 commit comments

Comments
 (0)