Add function to get string state attributes for a given contract

This commit is contained in:
Eric Meyer
2017-11-27 15:18:04 -06:00
parent 9c1051bfce
commit 708ad114ac
12 changed files with 205 additions and 16 deletions
+1
View File
@@ -5,4 +5,5 @@ type Blockchain interface {
SubscribeToBlocks(blocks chan Block)
StartListening()
StopListening()
GetContractStateAttribute(contractHash string, attributeName string) (*string, error)
}