Skip to content

Commit

Permalink
Merge #57
Browse files Browse the repository at this point in the history
57: Remove duplicate identifier. r=yvan-sraka a=AureliaDolo

Fix #56 

Co-authored-by: AureliaDolo <aurelia.dolo@gmail.com>
  • Loading branch information
bors[bot] and AureliaDolo committed Jan 4, 2022
2 parents 45f7781 + fc97f25 commit 0caef24
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions wasm/assembly/massa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export declare function assembly_script_print(message: string): void
* called by create_sc
**/
export declare function assembly_script_create_sc(bytecode: string): string
export declare function get_remaining_points(): u64

export declare function assembly_script_set_data(key: string, value: string): void;
export declare function assembly_script_get_data(key: string): string;
Expand Down Expand Up @@ -68,7 +67,7 @@ export function get_data(key: string): string {
* @param key key address of the data
* @param value value to put in the DB
*/
export function set_data_for(address: string, key: string, value: string): void {
export function set_data_for(address: string, key: string, value: string): void {
assembly_script_set_data_for(address, key, value);
}

Expand Down

0 comments on commit 0caef24

Please sign in to comment.