mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-01-31 23:32:16 +00:00
Move ScriptTest
This commit is contained in:
parent
7db7f89582
commit
2f790520f4
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
Loading…
Reference in New Issue
Block a user