Skip to content

Commit

Permalink
Update to new Avm CREATE type
Browse files Browse the repository at this point in the history
- The 'type' value that specifies a transaction is an Avm CREATE transaction
  has changed from 0xf to 0x2.
  • Loading branch information
aionick committed Apr 17, 2019
1 parent 628d997 commit b66e0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/SignedTransactionBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public SignedTransactionBuilder energyPrice(long price) {
* @return this builder.
*/
public SignedTransactionBuilder useAvmTransactionType() {
this.type = 0xf;
this.type = 0x2;
return this;
}

Expand Down

0 comments on commit b66e0de

Please sign in to comment.