Skip to content

Commit

Permalink
VM: clean up transaction executor
Browse files Browse the repository at this point in the history
  • Loading branch information
semux committed Aug 19, 2018
1 parent 00bcc72 commit 3407d83
Show file tree
Hide file tree
Showing 5 changed files with 182 additions and 330 deletions.
5 changes: 2 additions & 3 deletions src/main/java/org/ethereum/vm/client/Transaction.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@

import java.math.BigInteger;

import org.ethereum.vm.util.ByteArrayUtil;

/**
* A facade interface for Transaction. The client needs to wrap the native
* transaction to comply this specification, in order to use EVM.
Expand All @@ -45,7 +43,8 @@ public interface Transaction {
/**
* Returns the recipient address.
*
* @return a 20-byte array, or {@link ByteArrayUtil#EMPTY_BYTE_ARRAY} for
* @return a 20-byte array, or
* {@link org.apache.commons.lang3.ArrayUtils#EMPTY_BYTE_ARRAY} for
* CREATE, not NULL.
*/
byte[] getTo();
Expand Down
Loading

0 comments on commit 3407d83

Please sign in to comment.