From e7b6c8b7e0fc7cd600e91a6c29b44453f978c1a9 Mon Sep 17 00:00:00 2001 From: Jack May Date: Tue, 13 Nov 2018 17:23:13 -0800 Subject: [PATCH] Accounts get kicked if no tokens --- src/bpf_loader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bpf_loader.rs b/src/bpf_loader.rs index d35990392c..156c2110cd 100644 --- a/src/bpf_loader.rs +++ b/src/bpf_loader.rs @@ -15,7 +15,7 @@ pub fn id() -> Pubkey { pub fn account() -> Account { Account { - tokens: 0, + tokens: 1, owner: id(), userdata: BPF_LOADER_NAME.as_bytes().to_vec(), executable: true,