Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Blockchain no longer imports other modules
Browse files Browse the repository at this point in the history
  • Loading branch information
localhuman committed Jan 1, 2018
1 parent aad18d8 commit 2c6e01a
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions boa/blockchain/vm/Neo/Blockchain.py
Original file line number Diff line number Diff line change
@@ -1,66 +1,61 @@
from boa.blockchain.vm.Neo.Header import *
from boa.blockchain.vm.Neo.Block import *
from boa.blockchain.vm.Neo.Transaction import *
from boa.blockchain.vm.Neo.Account import *
from boa.blockchain.vm.Neo.Asset import *
from boa.blockchain.vm.Neo.Contract import *


def GetHeight() -> int:

def GetHeight():
"""
"""
pass


def GetHeader(height_or_hash) -> Header:
def GetHeader(height_or_hash):
"""
:param height_or_hash:
"""
pass


def GetBlock(height_or_hash) -> Block:
def GetBlock(height_or_hash):
"""
:param height_or_hash:
"""
pass


def GetTransaction(hash) -> Transaction:
def GetTransaction(hash):
"""
:param hash:
"""
pass


def GetAccount(script_hash) -> Account:
def GetAccount(script_hash):
"""
:param script_hash:
"""
pass


def GetValidators() -> []:
def GetValidators():
"""
"""
pass


def GetAsset(asset_id) -> Asset:
def GetAsset(asset_id):
"""
:param asset_id:
"""
pass


def GetContract(script_hash) -> Contract:
def GetContract(script_hash):
"""
:param script_hash:
Expand Down

0 comments on commit 2c6e01a

Please sign in to comment.