flintrocks / flint

The Flint Programming Language for Smart Contracts
MIT License
2 stars 0 forks source link

External contract member checks #99

Closed Aurel300 closed 5 years ago

Aurel300 commented 5 years ago

(from #72)

External contracts can be specified with the external trait syntax:

external trait Ext {
  func someFunc()
  func someReturningFunc(param: Int64, other: UInt72) -> Int
}

External contracts are severely limited in what can or cannot be specified; a lot of normal trait functionality should be disabled.

nvgrw commented 5 years ago

New ticket made #124