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;
|
return hash;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param hash the hash to set
|
|
||||||
*/
|
|
||||||
void setHash(Sha256Hash hash) {
|
void setHash(Sha256Hash hash) {
|
||||||
this.hash = hash;
|
this.hash = hash;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @return the index
|
|
||||||
*/
|
|
||||||
public long getIndex() {
|
public long getIndex() {
|
||||||
maybeParse();
|
maybeParse();
|
||||||
return index;
|
return index;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public void setIndex(long index) {
|
||||||
* @param index the index to set
|
|
||||||
*/
|
|
||||||
void setIndex(long index) {
|
|
||||||
this.index = index;
|
this.index = index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,8 +14,9 @@
|
|||||||
* limitations under the License.
|
* 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.Script;
|
||||||
import com.google.bitcoin.script.ScriptOpCodes;
|
import com.google.bitcoin.script.ScriptOpCodes;
|
||||||
import com.google.common.collect.Lists;
|
import com.google.common.collect.Lists;
|
Loading…
Reference in New Issue
Block a user