Program_ids were overlapping (#1626)

Program_ids were overlapping
This commit is contained in:
jackcmay
2018-10-26 19:44:53 -07:00
committed by GitHub
parent 3488ea7d1c
commit be003970b7
8 changed files with 84 additions and 22 deletions

View File

@@ -105,8 +105,9 @@ impl Default for TokenProgram {
}
}
pub const TOKEN_PROGRAM_ID: [u8; 32] = [
5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
const TOKEN_PROGRAM_ID: [u8; 32] = [
131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0,
];
impl TokenProgram {