Skip to content

Commit

Permalink
fix(stellar): u128 signature weight
Browse files Browse the repository at this point in the history
  • Loading branch information
re1ro committed Jul 19, 2024
1 parent 9eb7341 commit ba091fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stellar/deploy-contract.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ function getInitializeArgs(chain, contractName, wallet, options) {
signers: [
{
signer: Address.fromString(wallet.publicKey()).toBuffer(),
weight: new ScInt(1, { type: 'u256' }),
weight: new ScInt(1, { type: 'u128' }),
},
],
threshold: new ScInt(1, { type: 'u256' }),
threshold: new ScInt(1, { type: 'u128' }),
nonce: Buffer.alloc(32),
});

Expand Down

0 comments on commit ba091fd

Please sign in to comment.