Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tlb/transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ func (a AccStatusChange) ToCell() (*cell.Cell, error) {
case AccStatusChangeUnchanged:
return cell.BeginCell().MustStoreUInt(0b0, 1).EndCell(), nil
case AccStatusChangeFrozen:
return cell.BeginCell().MustStoreUInt(0b01, 2).EndCell(), nil
return cell.BeginCell().MustStoreUInt(0b10, 2).EndCell(), nil
case AccStatusChangeDeleted:
return cell.BeginCell().MustStoreUInt(0b11, 2).EndCell(), nil
}
Expand Down
Loading
Loading