mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-20 18:22:12 +01:00
Fix a minor bug in OP_PUSHDATA2 (not used). Resolves issue 80.
This commit is contained in:
parent
ea7741d3e0
commit
bf7b8f133c
@ -245,6 +245,7 @@ public class Script {
|
||||
os.write(OP_PUSHDATA2);
|
||||
os.write(0xFF & (buf.length));
|
||||
os.write(0xFF & (buf.length >> 8));
|
||||
os.write(buf);
|
||||
} else {
|
||||
throw new RuntimeException("Unimplemented");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user