fix: fix static properties in flow type declaration
This commit is contained in:
committed by
Justin Starry
parent
5f46ef7adc
commit
a6b7dcb3c6
@@ -659,9 +659,9 @@ export class SystemProgram {
|
||||
/**
|
||||
* Public key that identifies the System program
|
||||
*/
|
||||
static get programId(): PublicKey {
|
||||
return new PublicKey('11111111111111111111111111111111');
|
||||
}
|
||||
static programId: PublicKey = new PublicKey(
|
||||
'11111111111111111111111111111111',
|
||||
);
|
||||
|
||||
/**
|
||||
* Generate a transaction instruction that creates a new account
|
||||
|
Reference in New Issue
Block a user