2

What does view mean in this example? I have never seen this keyword before.

function symbol() view returns (string symbol)
user9365
  • 43
  • 1
  • 5

1 Answers1

7

view keyword means that function will not modify state of contract, i.e. not modify variables, not emit events etc.