Skip to content

Commit

Permalink
Merge pull request #1550 from o1-labs/merge/develop-main
Browse files Browse the repository at this point in the history
Merge develop
  • Loading branch information
mitschabaude authored Apr 10, 2024
2 parents 3852aeb + 4edb66c commit 609578c
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion run-ci-tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

case $TEST_TYPE in
Expand Down
2 changes: 1 addition & 1 deletion run-integration-tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

./run src/examples/zkapps/hello-world/run.ts --bundle
Expand Down
2 changes: 1 addition & 1 deletion run-jest-tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
shopt -s globstar # to expand '**' into nested directories

Expand Down
2 changes: 1 addition & 1 deletion run-minimal-mina-tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

npm run dev
Expand Down
2 changes: 1 addition & 1 deletion run-unit-tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
shopt -s globstar # to expand '**' into nested directories./

Expand Down
4 changes: 3 additions & 1 deletion src/examples/zkapps/hello-world/hello-world.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ import {
state,
} from 'o1js';

export const adminPrivateKey = PrivateKey.random();
export const adminPrivateKey = PrivateKey.fromBase58(
'EKFcef5HKXAn7V2rQntLiXtJr15dkxrsrQ1G4pnYemhMEAWYbkZW'
);
export const adminPublicKey = adminPrivateKey.toPublicKey();

export class HelloWorld extends SmartContract {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/provable/field.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ class Field {
}

/**
* Add a "field-like" value to this {@link Field} element.
* Add a field-like value to this {@link Field} element.
*
* @example
* ```ts
Expand Down
2 changes: 1 addition & 1 deletion src/mina
Submodule mina updated 405 files
2 changes: 1 addition & 1 deletion src/mina-signer/build-cjs.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

cp index.cjs dist/node/mina-signer/index.cjs
Expand Down
2 changes: 1 addition & 1 deletion src/mina-signer/build-web.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

tsc -p ../../tsconfig.mina-signer-web.json
Expand Down

0 comments on commit 609578c

Please sign in to comment.