Skip to content

Commit

Permalink
Merge pull request #18 from enigmampc/fix-burn-history
Browse files Browse the repository at this point in the history
Fixed order of owner and burner in transaction history
  • Loading branch information
reuvenpo authored Jun 14, 2021
2 parents 83b3158 + 3aeedf0 commit ead6f74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/transaction_history.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ impl StoredTxAction {
fn burn(owner: CanonicalAddr, burner: CanonicalAddr) -> Self {
Self {
tx_type: TxCode::Burn.to_u8(),
address1: Some(owner),
address2: Some(burner),
address1: Some(burner),
address2: Some(owner),
address3: None,
}
}
Expand Down

0 comments on commit ead6f74

Please sign in to comment.