diff --git a/bootstrap-contract/bootstrap_contract.cpp b/bootstrap-contract/bootstrap_contract.cpp index cb6ddef..1826759 100644 --- a/bootstrap-contract/bootstrap_contract.cpp +++ b/bootstrap-contract/bootstrap_contract.cpp @@ -31,7 +31,7 @@ int main(int argc, char **argv) const struct hp_user *user = &ctx->users.list[u]; // We allow only the owner of the instance to upload the bundle.zip - if (strcmp(user->pubkey, argv[1]) != 0) + if (strcmp(user->pubkey.data, argv[1]) != 0) continue; // Iterate through all inputs from this user.