(value: string)
| 262 | } |
| 263 | |
| 264 | export function add_storage_string(value: string): OperationStruct { |
| 265 | let operation = OPCODE_ID_31_ADD_STORAGE_STRING(value); |
| 266 | return operation; |
| 267 | } |
| 268 | |
| 269 | export function vote(voteArray: boolean[]): OperationStruct { |
| 270 | let operation = OPCODE_ID_32_VOTE(voteArray); |
nothing calls this directly
no test coverage detected