Increase default CPU count in Vagrantfile to a more reasonable default

This commit is contained in:
sasha 2022-10-17 12:37:14 -07:00
parent af07f05637
commit e772ceb03a
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -21,7 +21,7 @@ Vagrant.configure(2) do |config|
gitian.vm.provider "virtualbox" do |v|
v.name = "zcash-build"
v.memory = 4096
v.cpus = 2
v.cpus = 4
v.customize ["modifyvm", :id, "--nested-hw-virt", "on"]
end