3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 23:32:16 +00:00

Move ScriptTest

This commit is contained in:
Mike Hearn 2013-04-24 18:08:11 +02:00
parent 7db7f89582
commit 2f790520f4
2 changed files with 3 additions and 11 deletions

View File

@ -169,25 +169,16 @@ public class TransactionOutPoint extends ChildMessage implements Serializable {
return hash;
}
/**
* @param hash the hash to set
*/
void setHash(Sha256Hash hash) {
this.hash = hash;
}
/**
* @return the index
*/
public long getIndex() {
maybeParse();
return index;
}
/**
* @param index the index to set
*/
void setIndex(long index) {
public void setIndex(long index) {
this.index = index;
}

View File

@ -14,8 +14,9 @@
* limitations under the License.
*/
package com.google.bitcoin.core;
package com.google.bitcoin.script;
import com.google.bitcoin.core.*;
import com.google.bitcoin.script.Script;
import com.google.bitcoin.script.ScriptOpCodes;
import com.google.common.collect.Lists;