Cross platform virtual machine implementation (#60)

* Virtual machine for the NEO blockhain.

* fixed big.Int numeric operation pointer issue.

* added appcall

* Added README for vm package.

* removed main.go

* started VM cli (prompt) integration

* added support for printing the stack.

* moved cli to vm package

* fixed vet errors

* updated readme

* added more test for VM and fixed some edge cases.

* bumped version -> 0.37.0
This commit is contained in:
Anthony De Meulemeester 2018-03-30 18:15:06 +02:00 committed by GitHub
parent 0b023c5c5c
commit 931388b687
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 1914 additions and 3 deletions

View file

@ -5,6 +5,7 @@ import (
"github.com/CityOfZion/neo-go/cli/server"
"github.com/CityOfZion/neo-go/cli/smartcontract"
"github.com/CityOfZion/neo-go/cli/vm"
"github.com/CityOfZion/neo-go/cli/wallet"
"github.com/urfave/cli"
)
@ -18,6 +19,7 @@ func main() {
server.NewCommand(),
smartcontract.NewCommand(),
wallet.NewCommand(),
vm.NewCommand(),
}
ctl.Run(os.Args)