Skip to content
This repository was archived by the owner on Sep 6, 2018. It is now read-only.

Commit

Permalink
Merge pull request #39 from ManfredKarrer/mk_master
Browse files Browse the repository at this point in the history
Refactoring TxParser
  • Loading branch information
ManfredKarrer authored Aug 27, 2018
2 parents eee4597 + 75c7b65 commit d70a81f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/main/java/bisq/common/app/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ public static void printVersion() {
'}');
}

//TODO move to consensus area
public static final byte COMPENSATION_REQUEST = (byte) 0x01;
public static final byte PROPOSAL = (byte) 0x01;
public static final byte BLIND_VOTE = (byte) 0x01;
Expand Down
4 changes: 2 additions & 2 deletions src/main/proto/pb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1335,8 +1335,7 @@ message Tx {
repeated BaseTxOutput tx_outputs = 1;
TxType txType = 2;
int64 burnt_fee = 3;
int32 lock_time = 4;
int32 unlock_block_height = 5;
int32 unlock_block_height = 4;
}

enum TxType {
Expand Down Expand Up @@ -1380,6 +1379,7 @@ message RawTxOutput {

message TxOutput {
TxOutputType tx_output_type = 1;
int32 lock_time = 2;
}

enum TxOutputType {
Expand Down

0 comments on commit d70a81f

Please sign in to comment.