Skip to content
Snippets Groups Projects
Commit b9ed6e01 authored by Chris D'Costa's avatar Chris D'Costa Committed by GitHub
Browse files

Change i8 to u8 on WithdrawReasons #8586 (#8591)

parent a4ed9bb9
No related merge requests found
......@@ -126,7 +126,7 @@ pub enum BalanceStatus {
bitflags::bitflags! {
/// Reasons for moving funds out of an account.
#[derive(Encode, Decode)]
pub struct WithdrawReasons: i8 {
pub struct WithdrawReasons: u8 {
/// In order to pay for (system) transaction costs.
const TRANSACTION_PAYMENT = 0b00000001;
/// In order to transfer ownership.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment